:root {
  --gold: #c4a35a;
  --gold-bright: #e8c56b;
  --gold-deep: #9a7b32;
  --black: #0a0a0a;
  --black-soft: #111111;
  --surface: #161616;
  --surface-2: #1c1c1c;
  --cream: #f6f1e8;
  --cream-muted: #d8d0c2;
  --muted: #9a9388;
  --white: #ffffff;
  --line: rgba(196, 163, 90, 0.22);
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --header-h: 84px;
  --font: "Outfit", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --num: "Roboto", "Lato", "Courier New", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
input {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.wide {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.num,
a[href^="tel"] {
  font-family: var(--num);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
.display {
  font-family: var(--display);
  line-height: 1.08;
  font-weight: 600;
}

h1 {
  font-size: clamp(42px, 6.4vw, 86px);
}

h2 {
  font-size: clamp(32px, 4.6vw, 62px);
}

h3 {
  font-size: clamp(22px, 2.2vw, 32px);
}

.lead {
  color: var(--cream-muted);
  font-size: 18px;
  max-width: 680px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.22);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: 0.35s ease;
}

.site-header,
.site-header a,
.logo-text,
.drop-link {
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.site-header.scrolled,
.site-header.scrolled a,
.site-header.scrolled .logo-text,
.site-header.scrolled .drop-link {
  text-shadow: none;
}

.site-header .btn-nav {
  text-shadow: none;
}

.drop-link.active,
.site-nav > a.active {
  color: var(--gold-bright);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo img {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--cream);
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 30px; }

.nav-toggle.active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav > a,
.drop-link {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.site-nav > a:hover,
.drop-link:hover,
.site-nav > a.active {
  color: var(--gold-bright);
  background: rgba(196, 163, 90, 0.08);
}

.has-dropdown {
  position: relative;
}

.drop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--cream);
}

.drop-link svg {
  width: 12px;
  height: 12px;
  transition: 0.25s ease;
}

.has-dropdown:hover .drop-link svg,
.has-dropdown.open .drop-link svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #151515;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 20;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--cream-muted);
  font-size: 14px;
}

.dropdown a:hover {
  background: rgba(196, 163, 90, 0.1);
  color: var(--gold-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1408;
  box-shadow: 0 10px 24px rgba(196, 163, 90, 0.28);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
}

.btn-gold:hover::after {
  animation: shine 0.7s ease;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(196, 163, 90, 0.4);
}

.btn-ghost {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(196, 163, 90, 0.12);
  transform: translateY(-3px);
}

.btn-nav {
  background: var(--gold);
  color: #1a1408 !important;
  min-height: 42px;
  padding: 0 18px;
  margin-left: 8px;
}

.btn-nav:hover {
  background: var(--gold-bright) !important;
  color: #1a1408 !important;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: kenburns 18s ease-in-out infinite alternate;
}

.hero-slide.active .hero-bg {
  animation: kenburns 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.72) 48%, rgba(10, 10, 10, 0.92) 100%),
    radial-gradient(circle at 20% 20%, rgba(196, 163, 90, 0.18), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-content h1 {
  max-width: 980px;
  margin: 16px 0 18px;
  color: var(--cream);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 680px;
  color: var(--cream-muted);
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(246, 241, 232, 0.35);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--gold);
  width: 28px;
  border-radius: 999px;
}

.spark-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright);
  animation: sparkRise linear infinite;
  opacity: 0.8;
}

/* Page hero */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 90px 20px 70px;
}

.page-hero .hero-bg,
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero .hero-bg {
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card b {
  display: block;
  font-family: var(--num);
  font-size: 38px;
  color: var(--gold-bright);
  font-weight: 700;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 42px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-2);
  min-height: 420px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #101010;
}

.media-frame::after {
  content: "View";
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(10, 10, 10, 0.8);
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.muted-copy {
  color: var(--cream-muted);
  margin: 18px 0 26px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 10px;
  color: var(--cream-muted);
}

.checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Marquee */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0f0f0f;
  overflow: hidden;
  padding: 18px 0;
}

.marquee {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-size: 28px;
  color: var(--cream);
}

.marquee span {
  white-space: nowrap;
}

.marquee b {
  color: var(--gold);
  font-weight: 600;
}

/* Cards */
.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 163, 90, 0.45);
}

.card-media {
  aspect-ratio: 16 / 11;
  background: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  cursor: pointer;
  transition: 0.5s ease;
}

.card:hover .card-media img {
  transform: scale(1.03);
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  margin-bottom: 8px;
}

.card-body p {
  color: var(--cream-muted);
  font-size: 15px;
}

.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* Service blocks */
.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-block.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-block.reverse .service-copy {
  order: 2;
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.tag {
  border: 1px solid var(--line);
  color: var(--cream-muted);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  min-height: 180px;
}

.process-item .num {
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--cream);
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item p {
  display: none;
  padding: 0 20px 18px;
  color: var(--cream-muted);
}

.faq-item.open p {
  display: block;
}

.faq-item button span {
  color: var(--gold);
  font-family: var(--num);
  transition: 0.25s ease;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

/* CTA */
.cta-band {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.82)),
    url("https://images.unsplash.com/photo-1558655146-d09347e92766?auto=format&fit=crop&w=1800&q=80") center/cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 90px 20px;
}

.cta-band h2 {
  margin: 8px 0 18px;
}

/* Footer */
.site-footer {
  background: #090909;
  padding: 70px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 32px;
}

.site-footer h4 {
  font-family: var(--font);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--cream-muted);
  font-size: 15px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gold-bright);
}

/* Floating */
.float-stack {
  position: fixed;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-stack.left {
  left: 18px;
  bottom: 22px;
}

.float-stack.right {
  right: 18px;
  bottom: 22px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  position: relative;
  animation: floaty 3.2s ease-in-out infinite;
}

.float-btn.wa {
  background: #25d366;
}

.float-btn.call {
  background: #1f6feb;
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.float-btn::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: var(--cream);
  border: 1px solid var(--line);
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-family: var(--num);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.float-stack.right .float-btn::after {
  right: 66px;
}

.float-stack.left .float-btn::after {
  left: 66px;
}

.float-btn:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1408;
  font-size: 28px;
  cursor: pointer;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

.map-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.contact-card a.num,
.contact-card .num {
  font-size: 22px;
  color: var(--gold-bright);
  font-weight: 700;
}

/* Animations */
@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-2%, -1%, 0); }
}

@keyframes sparkRise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-110vh) scale(1); opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@keyframes shine {
  to { left: 140%; }
}

/* Responsive */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
}

.nav-backdrop.show {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .stats,
  .grid-4,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .service-block,
  .service-block.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-block.reverse .service-copy {
    order: 0;
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86vw, 360px);
    height: 100vh;
    background: #0f0f0f;
    flex-direction: column;
    align-items: stretch;
    padding: 96px 22px 32px;
    gap: 6px;
    border-left: 1px solid var(--line);
    transition: 0.35s ease;
    overflow: auto;
    z-index: 1002;
  }

  .site-nav.open {
    right: 0;
  }

  .site-nav > a,
  .drop-link {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
    padding: 14px 12px;
  }

  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 0 0 8px 12px;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .btn-nav {
    margin: 12px 0 0;
    justify-content: center;
  }

  .stats,
  .grid-3,
  .grid-2,
  .grid-4,
  .process {
    grid-template-columns: 1fr;
  }

  .hero-content h1,
  h1 {
    font-size: 40px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 560px) {
  .container,
  .wide {
    width: calc(100% - 28px);
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
  }
}
