/* ============================================================
   MAJESTIC GARAGE DOORS — Global Stylesheet
   Dark mode, gold accent, luxury serif aesthetic
   ============================================================ */

/* ── Google Fonts Import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* Gold palette */
  --gold:          #C9A84C;
  --gold-light:    #E0C872;
  --gold-dark:     #A8872F;
  --gold-glow:     rgba(201, 168, 76, 0.35);

  /* Backgrounds */
  --bg-primary:    #0A0A0A;
  --bg-secondary:  #141414;
  --bg-elevated:   #1A1A1A;

  /* Text */
  --text-primary:  #F5F0E8;
  --text-secondary:#9A9590;
  --text-muted:    #5A5550;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  4rem;
  --space-2xl: 8rem;

  /* Glassmorphism (reusable) */
  --glass-bg:     rgba(20, 20, 20, 0.6);
  --glass-border: rgba(201, 168, 76, 0.12);
  --glass-blur:   16px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  transition: opacity 0.8s var(--ease-smooth),
              transform 0.8s var(--ease-smooth);
}

.navbar--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.navbar--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.navbar__logo {
  height: 48px;
  width: auto;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar__brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-smooth);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.navbar__link:hover {
  color: var(--gold);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bg-primary);
  background: var(--gold);
  padding: 0.6rem 1.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease-smooth),
              box-shadow 0.3s var(--ease-smooth);
}

.navbar__cta:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 24px var(--gold-glow);
}

/* ── Navbar Hamburger ────────────────────────────────────── */
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin: 6px 0;
  transition: transform 0.4s var(--ease-smooth), opacity 0.4s var(--ease-smooth);
}

/* Hamburger animation to X */
.navbar__hamburger--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Menu Overlay ────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-smooth), visibility 0.5s var(--ease-smooth);
}

.mobile-menu--active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-smooth);
}

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

.mobile-menu__cta {
  margin-top: var(--space-md);
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom gradient overlay for contrast */
.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.3) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Top gradient overlay for navbar blending */
.hero__overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ── Hero Tagline ────────────────────────────────────────── */
.hero__tagline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.hero__tagline h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.tagline--semibold {
  display: block;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--text-primary);
  letter-spacing: 0.2em;
  margin-bottom: 0.15em;
}

.tagline--bold {
  display: block;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 60px var(--gold-glow),
               0 0 120px rgba(201, 168, 76, 0.15);
}

/* Decorative line under tagline */
.hero__tagline-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  opacity: 0;
  transform: scaleX(0);
}

/* ── Scroll Indicator ────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.5s var(--ease-smooth);
}

.scroll-indicator--hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-indicator__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
  opacity: 0.7;
}

.scroll-indicator__wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%  { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-indicator__text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

/* ── Loading Overlay ─────────────────────────────────────── */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.8s var(--ease-smooth);
}

.loading-overlay--hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-overlay__logo {
  width: 80px;
  height: 80px;
  animation: loadingPulse 2s ease-in-out infinite;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50%      { opacity: 1; transform: scale(1); }
}

.loading-overlay__bar-track {
  width: 200px;
  height: 2px;
  background: var(--bg-elevated);
  border-radius: 1px;
  overflow: hidden;
}

.loading-overlay__bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.3s var(--ease-smooth);
}

/* ── Main Content (after hero) ───────────────────────── */
.content {
  position: relative;
  background: var(--bg-primary);
  z-index: 5;
}

/* ── Partners Marquee Section ────────────────────────── */
.partners {
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
  position: relative;
}

.partners__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-lg);
}

.partners__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.partners__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.partners__rule {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 1.25rem auto 0;
  opacity: 0.5;
}

/* Marquee container */
.marquee {
  position: relative;
  width: 100%;
  padding: var(--space-lg) 0;
}

/* Gradient edge fades */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

/* Track: holds both groups side-by-side */
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}



/* Each group of logos */
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  flex-shrink: 0;
}

/* Individual logos */
.marquee__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity 0.5s var(--ease-smooth),
              filter 0.5s var(--ease-smooth);
}

.marquee__logo:hover {
  opacity: 0.9;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px var(--gold-glow));
}

/* Infinite scroll keyframe */
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Glassmorphism Utility (for later use) ───────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
}

/* ── About Section ──────────────────────────────────────── */
.about {
  padding: var(--space-2xl) clamp(1.5rem, 5vw, 6rem);
  position: relative;
  overflow: hidden;
}

/* Subtle top separator */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-dark) 30%,
    var(--gold) 50%,
    var(--gold-dark) 70%,
    transparent
  );
  opacity: 0.25;
}

.about__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* ── Comparison (Before / After) ────────────────────────── */
.about__comparison {
  position: relative;
}

.comparison__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  cursor: ew-resize;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.comparison__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.comparison__img--after {
  z-index: 1;
}

.comparison__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  overflow: hidden;
}

.comparison__img--before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Slider vertical line + handle */
.comparison__slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.comparison__line {
  flex: 1;
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.comparison__handle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  box-shadow:
    0 0 20px var(--gold-glow),
    0 4px 16px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  pointer-events: auto;
  cursor: ew-resize;
  transition: transform 0.2s var(--ease-smooth),
              box-shadow 0.2s var(--ease-smooth);
}

.comparison__handle:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 30px var(--gold-glow),
    0 6px 24px rgba(0, 0, 0, 0.6);
}

/* Before / After labels */
.comparison__label {
  position: absolute;
  bottom: 1.25rem;
  z-index: 4;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison__label--before {
  left: 1rem;
}

.comparison__label--after {
  right: 1rem;
}

/* ── About Copy ─────────────────────────────────────────── */
.about__copy {
  padding: var(--space-lg) 0;
}

.about__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 0;
}

.about__rule {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 1.5rem 0 2rem;
  opacity: 0.5;
}

.about__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about__text:last-of-type {
  margin-bottom: 2.5rem;
}

.about__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold);
  transition: background 0.4s var(--ease-smooth),
              color 0.4s var(--ease-smooth),
              box-shadow 0.4s var(--ease-smooth);
}

.about__cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: 0 4px 30px var(--gold-glow);
}

/* ── About Us (Team & History) ───────────────────────────── */
.about-us {
  padding: var(--space-2xl) clamp(1.5rem, 5vw, 6rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-us__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-us__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.about-us__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 0;
}

.about-us__rule {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 1.5rem 0 2rem;
  opacity: 0.5;
}

.about-us__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-us__text:last-of-type {
  margin-bottom: 2.5rem;
}

.about-us__visuals {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.about-us__img-wrapper {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.about-us__img-wrapper--1 {
  top: 0;
  right: 0;
  width: 75%;
  aspect-ratio: 1 / 1;
  z-index: 1;
}

.about-us__img-wrapper--2 {
  bottom: 0;
  left: 0;
  width: 60%;
  aspect-ratio: 1 / 1;
  z-index: 2;
  border: 4px solid var(--bg-secondary);
}

.about-us__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.about-us__img-wrapper--1 .about-us__img {
  object-position: 100% center;
}

.about-us__visuals:hover .about-us__img-wrapper--1 .about-us__img,
.about-us__visuals:hover .about-us__img-wrapper--2 .about-us__img {
  transform: scale(1.05);
}

.about-us__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--bg-primary);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px var(--gold-glow);
  border: 4px solid var(--bg-secondary);
  z-index: 3;
}

.badge__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.badge__text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-us__container {
    grid-template-columns: 1fr;
  }
  
  .about-us__visuals {
    max-width: 500px;
    margin: 3rem auto 0;
    aspect-ratio: 4 / 3;
  }
}

/* ── Services Section ───────────────────────────────────── */
.services {
  padding: var(--space-2xl) clamp(1.5rem, 5vw, 6rem);
  position: relative;
  overflow: hidden;
}

/* Subtle top separator (same pattern as about) */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-dark) 30%,
    var(--gold) 50%,
    var(--gold-dark) 70%,
    transparent
  );
  opacity: 0.25;
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-lg);
}

.services__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.services__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.services__rule {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 1.25rem auto 0;
  opacity: 0.5;
}

/* Grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  max-width: 1280px;
  margin: 0 auto;
  perspective: 1200px;
}

/* ── Service Card ──────────────────────────────────────── */
.service-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    transform 0.5s var(--ease-out),
    border-color 0.5s var(--ease-smooth),
    box-shadow 0.5s var(--ease-smooth),
    background 0.5s var(--ease-smooth);
  will-change: transform;
}

/* Glow orb — follows mouse via JS custom properties */
.service-card__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.12) 0%,
    rgba(201, 168, 76, 0.03) 40%,
    transparent 70%
  );
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  z-index: 0;
}

.service-card:hover .service-card__glow {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(20, 20, 20, 0.9);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(201, 168, 76, 0.06),
    inset 0 1px 0 rgba(201, 168, 76, 0.1);
}

/* Icon container */
.service-card__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 0.25rem;
  transition: transform 0.5s var(--ease-out);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 0px transparent);
  transition: filter 0.5s var(--ease-smooth);
}

.service-card:hover .service-card__icon {
  transform: translateY(-4px);
}

.service-card:hover .service-card__icon svg {
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

/* Title */
.service-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: color 0.4s var(--ease-smooth);
}

.service-card:hover .service-card__title {
  color: var(--gold-light);
}

/* Description text */
.service-card__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  flex-grow: 1;
}

/* Arrow indicator */
.service-card__arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--gold);
  margin-top: 0.5rem;
  transition:
    background 0.4s var(--ease-smooth),
    border-color 0.4s var(--ease-smooth),
    transform 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth);
}

.service-card:hover .service-card__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
  transform: translateX(4px);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* Top gold accent line on card */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold) 50%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

.service-card:hover::after {
  opacity: 0.6;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .comparison__wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .about__copy {
    text-align: center;
  }

  .about__rule {
    margin-left: auto;
    margin-right: auto;
  }

  .about__text {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .about__text:last-of-type {
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar__brand-text {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .navbar__links, .navbar__cta {
    display: none;
  }

  /* Ensure CTA is visible in mobile menu */
  .mobile-menu .navbar__cta {
    display: inline-block;
  }

  .navbar__hamburger {
    display: block;
  }

  .navbar__logo {
    height: 36px;
  }

  /* Partner logos smaller on mobile */
  .marquee__logo {
    height: 24px;
  }

  .hero__tagline h1 {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
  }

  .tagline--semibold {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    letter-spacing: 0.12em;
  }

  .tagline--bold {
    letter-spacing: 0.08em;
  }

  /* Gallery Teaser Mobile Fix - Full Container Width & Vertical Stacking */
  .gallery-teaser {
    padding: var(--space-xl) 1.5rem;
  }

  .gallery-teaser__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .gallery-teaser__content {
    padding: 0;
    text-align: left;
  }

  .gallery-teaser__visuals {
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    margin: 0;
    perspective: none;
  }

  .teaser-track {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100%;
    display: block;
  }

  .teaser-image {
    display: none;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    filter: grayscale(0%);
    transform: none !important;
    opacity: 1 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .teaser-image:hover {
    width: 100% !important;
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  }

  .teaser-image--1 {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero__tagline h1 {
    font-size: 3.2rem;
  }

  .tagline--semibold {
    font-size: 1.8rem;
  }

  .comparison__handle {
    width: 40px;
    height: 40px;
  }

  .comparison__handle svg {
    width: 22px;
    height: 22px;
  }

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

  .service-card__icon {
    width: 48px;
    height: 48px;
  }
}

/* ── Reviews Section ────────────────────────────────────── */
.reviews {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle top separator */
.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-dark) 30%,
    var(--gold) 50%,
    var(--gold-dark) 70%,
    transparent
  );
  opacity: 0.25;
}

.reviews__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-lg);
}

.reviews__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.reviews__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.reviews__rule {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 1.25rem auto 0;
  opacity: 0.5;
}

/* Google badge */
.reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 60px;
}

.reviews__google-icon {
  flex-shrink: 0;
}

.reviews__google-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.reviews__google-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.reviews__overall-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews__stars-row {
  display: flex;
  gap: 1px;
}

.reviews__rating-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

/* Reviews Marquee container */
.reviews-marquee {
  position: relative;
  width: 100%;
  padding: var(--space-lg) 0;
  overflow: hidden;
}

/* Edge gradient fades */
.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

/* Track: holds both groups side-by-side */
.reviews-marquee__track {
  display: flex;
  width: max-content;
  animation: reviewsMarqueeScroll 80s linear infinite;
}

.reviews-marquee__track:hover {
  animation-play-state: paused;
}

/* Each group of review cards */
.reviews-marquee__group {
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 1rem clamp(0.5rem, 1vw, 0.75rem);
  flex-shrink: 0;
}

/* Infinite scroll keyframe */
@keyframes reviewsMarqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Review Card ────────────────────────────────────────── */
.review-card {
  position: relative;
  flex: 0 0 clamp(300px, 30vw, 380px);
  background: var(--bg-secondary);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 0.5s var(--ease-out),
    border-color 0.5s var(--ease-smooth),
    box-shadow 0.5s var(--ease-smooth),
    background 0.5s var(--ease-smooth);
  will-change: transform;
}

/* Glow orb */
.review-card__glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.10) 0%,
    rgba(201, 168, 76, 0.03) 40%,
    transparent 70%
  );
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  z-index: 0;
}

.review-card:hover .review-card__glow {
  opacity: 1;
}

.review-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(20, 20, 20, 0.9);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(201, 168, 76, 0.05),
    inset 0 1px 0 rgba(201, 168, 76, 0.08);
}

/* Top gold accent line on hover */
.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold) 50%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

.review-card:hover::after {
  opacity: 0.5;
}

/* Quote decoration */
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* Card header */
.review-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg-primary);
  letter-spacing: 1px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.2);
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex-grow: 1;
}

.review-card__name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.review-card__date {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.review-card__google-g {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease-smooth);
}

.review-card:hover .review-card__google-g {
  opacity: 1;
}

/* Stars */
.review-card__stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3px;
}

/* Review text */
.review-card__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
  border: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

/* ── Reviews Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
  .review-card {
    flex: 0 0 clamp(280px, 70vw, 340px);
  }
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 clamp(260px, 82vw, 300px);
  }

  .reviews-marquee::before,
  .reviews-marquee::after {
    width: 40px;
  }

  .reviews__google-badge {
    padding: 0.6rem 1rem;
    gap: 0.6rem;
  }
}

/* ── Gallery Teaser (Index Hook) ────────────────────────── */
.gallery-teaser {
  padding: var(--space-2xl) clamp(1.5rem, 5vw, 6rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.gallery-teaser__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 960px) {
  .gallery-teaser__container {
    grid-template-columns: 1fr;
  }
}

.gallery-teaser__content {
  z-index: 2;
}

.gallery-teaser__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.gallery-teaser__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gallery-teaser__rule {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.gallery-teaser__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.gallery-teaser__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--gold);
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold);
  transition: all 0.4s var(--ease-smooth);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.gallery-teaser__cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.gallery-teaser__visuals {
  position: relative;
  height: 100%;
  min-height: 400px;
  perspective: 1000px;
}

.teaser-track {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  gap: 1.25rem;
  width: 100%;
}

.teaser-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  filter: grayscale(30%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: 220px;
  height: 380px;
  flex-shrink: 0;
}

.teaser-image:hover {
  width: 480px;
  filter: grayscale(0%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--gold-glow);
  z-index: 10;
  transform: scale(1.02) translateY(0) !important;
}

.teaser-track:hover .teaser-image:not(:hover) {
  width: 100px;
  opacity: 0.2;
  filter: grayscale(100%) blur(4px);
  transform: scale(0.9) translateY(0) !important;
}

.teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaser-image--1 { transform: translateY(20px); }
.teaser-image--2 { transform: translateY(-30px); }
.teaser-image--3 { transform: translateY(40px); }

/* ── Gallery Page Styles ────────────────────────────────── */
.gallery-page {
  padding-top: 100px; /* Offset for fixed navbar */
  min-height: 100vh;
}

.gallery-hero {
  padding: var(--space-xl) clamp(1.5rem, 5vw, 6rem);
  text-align: center;
}

.gallery-hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.gallery-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.gallery-hero__heading--gold {
  color: var(--gold);
  font-style: italic;
}

.gallery-hero__rule {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0.5;
}

.gallery-hero__text {
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.gallery-grid-section {
  padding: 0 clamp(1.5rem, 5vw, 6rem) var(--space-2xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  gap: 1.5rem;
  grid-auto-flow: dense; /* Fill holes in masonry */
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-elevated);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-item--large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-item--medium {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 768px) {
  .gallery-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-item--tall {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover .gallery-item__img {
  transform: scale(1.05);
}

.gallery-footer-cta {
  text-align: center;
  padding: var(--space-xl) 2rem var(--space-2xl);
  background: var(--bg-secondary);
}

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s var(--ease-smooth);
}

.lightbox--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-smooth);
}

.lightbox--active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.lightbox__close:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
  z-index: 10000;
}

.lightbox__nav:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.lightbox__nav--prev {
  left: 2rem;
}

.lightbox__nav--next {
  right: 2rem;
}

@media (max-width: 768px) {
  .lightbox__nav {
    top: auto;
    bottom: 2rem;
    transform: none;
  }
  .lightbox__nav--prev {
    left: 30%;
  }
  .lightbox__nav--next {
    right: 30%;
  }
}

/* ── Site Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: var(--space-2xl) 0 0;
}

.site-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  padding-bottom: var(--space-xl);
}

@media (max-width: 900px) {
  .site-footer__container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.site-footer__brand {
  max-width: 400px;
}

.site-footer__brand-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.site-footer__logo {
  height: 48px;
  width: auto;
  opacity: 0.9;
}

.site-footer__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.site-footer__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.site-footer__heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.site-footer__rule {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: var(--space-lg);
}

.site-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__list li,
.site-footer__list a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-smooth);
}

.site-footer__list a:hover {
  color: var(--gold);
}

.site-footer__label {
  color: var(--gold);
  font-weight: 500;
  margin-right: 0.25rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-md) clamp(1.5rem, 5vw, 6rem);
  text-align: center;
}

.site-footer__bottom p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-page {
  padding-top: 100px; /* Space for navbar */
}

.contact-section {
  padding: var(--space-md) clamp(1.5rem, 5vw, 6rem) var(--space-2xl);
  position: relative;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.contact-section__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

@media (max-width: 900px) {
  .contact-section__container {
    grid-template-columns: 1fr;
  }
}

.contact__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.contact__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 0;
}

.contact__heading--gold {
  color: var(--gold);
  font-style: italic;
}

.contact__rule {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 1.5rem 0 2rem;
  opacity: 0.5;
}

.contact__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__detail-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact__detail-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

.contact__detail-value:hover {
  color: var(--gold);
}

.contact__detail-value--emergency {
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 0 20px var(--gold-glow);
}

/* Form Styles */
.contact__form-wrapper {
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3rem);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__group--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s var(--ease-smooth),
              box-shadow 0.3s var(--ease-smooth),
              background 0.3s var(--ease-smooth);
  outline: none;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--gold);
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.contact-form__submit {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--gold);
  padding: 1rem 2rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.4s var(--ease-smooth),
              box-shadow 0.4s var(--ease-smooth),
              transform 0.4s var(--ease-smooth);
}

.contact-form__submit:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 30px var(--gold-glow);
  transform: translateY(-2px);
}

/* Form Status Messages */
.contact-form__status {
  grid-column: 1 / -1;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  display: none;
  transition: all 0.3s ease;
}

.contact-form__status--success {
  display: block;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #2ecc71;
}

.contact-form__status--error {
  display: block;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}
