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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --gold-dim: #8a6e2f;
  --dark: #0a0a0e;
  --dark-2: #111118;
  --dark-3: #17171f;
  --dark-4: #1f1f2a;
  --text: #e8e4dc;
  --text-muted: #9a9488;
  --white: #ffffff;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

html { overflow-x: hidden; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
}

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

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
nav.scrolled {
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(10, 10, 14, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-top: 1rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,14,0.3) 0%,
    rgba(10,10,14,0.15) 40%,
    rgba(10,10,14,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 860px;
}
.eyebrow-break { display: none; }
@media (max-width: 480px) {
  .eyebrow-break { display: block; margin-bottom: 0.35rem; }
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s 0.3s forwards;
  will-change: opacity, transform;
}
.hero-title {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.55s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(232,228,220,0.8);
  margin-bottom: 2.8rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.75s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.95s forwards;
}
.btn-primary {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(232,228,220,0.35);
  color: rgba(232,228,220,0.85);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── INTRO VIDEO SECTION ── */
.intro-section {
  background: var(--dark-2);
  padding: 6rem 0;
}
.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text .section-tag { margin-bottom: 1.2rem; }
.intro-text .section-title { margin-bottom: 1.5rem; }
.intro-text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(232,228,220,0.8);
  line-height: 1.75;
}
.intro-video-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
}
.intro-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,14,0.45);
  transition: background 0.3s, opacity 0.3s;
}
.intro-video-wrap.playing .intro-play-btn {
  opacity: 0;
  pointer-events: none;
  background: transparent;
}
.intro-video-wrap.playing:hover .intro-play-btn {
  opacity: 1;
  pointer-events: auto;
  background: rgba(10,10,14,0.25);
}
.intro-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.2s, background 0.2s;
}
.intro-play-btn:hover .intro-play-icon {
  transform: scale(1.08);
  background: rgba(212,175,90,0.1);
}
.intro-video-wrap.playing .intro-play-btn .play-tri { display: none; }
.intro-video-wrap.playing .intro-play-btn .pause-bars { display: block; }
.pause-bars { display: none; }
@media (max-width: 900px) {
  .intro-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── SECTION COMMON ── */
section { position: relative; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark-4);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 3rem 2rem;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── SERVICES ── */
.services {
  padding: 8rem 0;
  background: var(--dark-2);
}
.services-header {
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08);
}
.service-card {
  background: var(--dark-2);
  padding: 3rem 2.5rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--dark-3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.75rem;
  color: var(--gold);
}
.card-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201,168,76,0.07);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: color var(--transition);
}
.service-card:hover .card-num { color: rgba(201,168,76,0.13); }
.service-title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── PORTFOLIO ── */
.portfolio {
  padding: 8rem 0;
  background: var(--dark);
}
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--dark);
}
.portfolio-item {
  position: relative;
  aspect-ratio: 9/10;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}
.portfolio-item video,
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
}
.portfolio-item:hover video,
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,14,0.85) 0%, rgba(10,10,14,0) 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
}
.portfolio-type {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), border-color var(--transition), transform var(--transition);
}
.play-btn svg { color: var(--white); margin-left: 4px; }
.portfolio-item:hover .play-btn {
  opacity: 1;
  border-color: var(--gold);
}
.portfolio-item:hover .play-btn svg { color: var(--gold); }

/* Inline playing state */
.portfolio-item.playing .play-btn {
  opacity: 0;
  pointer-events: none;
}
.portfolio-item.playing:hover .play-btn {
  opacity: 1;
  pointer-events: auto;
  border-color: var(--gold);
  background: rgba(201,168,76,0.15);
}
.portfolio-item.playing .portfolio-overlay { opacity: 1; }
.portfolio-item.playing video { transform: none; }
.pause-icon { display: none; }
.portfolio-item.playing .pause-icon { display: block; }
.portfolio-item.playing .play-icon { display: none; }

/* ── GALLERY ── */
.gallery-section {
  padding: 8rem 0;
  background: var(--dark);
}
.gallery-section .section-inner { max-width: 1400px; }
.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.07); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,14,0);
  transition: background 0.3s ease;
}
.gallery-item:hover::after { background: rgba(10,10,14,0.25); }
.gallery-vid-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10,10,14,0.55);
  border: 1.5px solid rgba(201,168,76,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-vid-badge {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,5,8,0.96);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox-media {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox-media img,
#lightbox-media video {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.15);
}
#lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid rgba(232,228,220,0.25);
  color: rgba(232,228,220,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
#lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(232,228,220,0.2);
  color: rgba(232,228,220,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }
#lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(232,228,220,0.35);
}

/* ── ABOUT ── */
.about {
  padding: 8rem 0;
  background: var(--dark-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text .section-lead { max-width: 100%; }
.about-body {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.about-body p + p { margin-top: 1rem; }
.about-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.5rem 2rem;
  text-align: center;
}
.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.25rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 8rem 0;
  background: var(--dark-3);
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-lead { margin: 0 auto; }
.testimonials-header .divider { margin: 1.5rem auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--dark-4);
  border: 1px solid rgba(201,168,76,0.08);
  padding: 2.5rem;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.stars svg { color: var(--gold); }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(232,228,220,0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
}
.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ── CTA BAND ── */
.cta-band {
  padding: 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: stretch;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image: url('media/IMG_1561.jpeg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.28;
}
.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,14,0.6) 0%, rgba(10,10,14,0.1) 100%);
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}
.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
}
.cta-headline em { color: var(--gold-light); font-style: italic; display: block; }
.cta-band-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.cta-band-sub {
  font-size: 1rem;
  color: rgba(232,228,220,0.72);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 340px;
}
@media (max-width: 768px) {
  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 6rem 1.5rem;
  }
  .cta-band-sub { max-width: 100%; }
}

/* ── CONTACT ── */
.contact {
  padding: 8rem 0;
  background: var(--dark-2);
  content-visibility: auto;
  contain-intrinsic-size: 0 700px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 0.9rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.25);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--dark-4); }
.address-group { position: relative; }
.address-dropdown {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: none;
  z-index: 50;
  display: none;
  max-height: 220px;
  overflow-y: auto;
}
.address-dropdown.open { display: block; }
.address-option {
  padding: 0.75rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.address-option:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.form-submit {
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-image-wrap img { height: 400px; }
  .about-image-badge { left: 0; bottom: -1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  nav.scrolled { padding: 0.85rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── SKIP NAV ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 999;
  background: var(--gold);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}
.skip-nav:focus { top: 1rem; }

/* ── KEYBOARD FOCUS STYLES ── */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.portfolio-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 0;
  z-index: 2;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
