﻿:root {
  --bg: #0b0d10;
  --ink: #ece6da;
  --muted: #b5ab9b;
  --card: #12161c;
  --line: #2a2f36;
  --gold: #c8a468;
  --gold-deep: #a77f43;
  --soft: #11161d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #090b0e 0%, #0d1117 45%, #090b0e 100%);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section-pad {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(135deg, rgba(20, 24, 31, 0.85), rgba(14, 18, 24, 0.95));
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 40vw;
  max-width: 540px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.26;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.ambient-a {
  top: -10vh;
  right: -10vw;
  background: radial-gradient(circle, rgba(200, 164, 104, 0.35), rgba(200, 164, 104, 0));
}

.ambient-b {
  left: -12vw;
  bottom: -18vh;
  background: radial-gradient(circle, rgba(167, 127, 67, 0.24), rgba(167, 127, 67, 0));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(9, 11, 14, 0.78);
  border-bottom: 1px solid rgba(200, 164, 104, 0.2);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(200, 164, 104, 0.36);
}

.brand-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  text-decoration: none;
  color: #e9e2d7;
  font-size: 0.95rem;
}

.pill-link {
  border: 1px solid rgba(200, 164, 104, 0.6);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
}

.menu-btn {
  display: none;
  border: 1px solid rgba(200, 164, 104, 0.5);
  background: rgba(20, 26, 34, 0.92);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, #1a1f27 0%, #10141a 50%, #0a0c10 100%);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(200, 164, 104, 0.5);
}

.loader-title {
  margin: 0.9rem 0 0.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.loader-sub {
  margin: 0 0 1rem;
  color: #b9ab95;
}

.loader-line {
  width: min(280px, 70vw);
  height: 3px;
  margin: 0 auto;
  background: rgba(200, 164, 104, 0.24);
  border-radius: 999px;
  overflow: hidden;
}

.loader-line span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, #8b6635, #c8a468);
  border-radius: 999px;
  animation: loaderMove 1.1s ease-in-out infinite;
}

@keyframes loaderMove {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(360%); }
}

.hero {
  padding-top: 6.2rem;
}

.hero-grid {
  display: block;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  border: 1px solid rgba(183, 138, 69, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.95rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.01;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--gold-deep);
}

.hero-copy {
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.1rem;
  border-radius: 0.7rem;
  border: 1px solid transparent;
  transition: 220ms ease;
}

.btn-solid {
  background: linear-gradient(130deg, var(--gold), #c79d5e);
  color: #0f1319;
  box-shadow: 0 12px 22px rgba(200, 164, 104, 0.28);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(200, 164, 104, 0.34);
}

.btn-outline {
  border-color: rgba(200, 164, 104, 0.58);
  color: #f0e7da;
  background: rgba(20, 26, 34, 0.62);
}

.feature-card,
.asset-card,
.contact-card,
.faq-wrap details,
.mini-card,
.testimonials {
  background: rgba(17, 22, 29, 0.8);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.section-head {
  max-width: 900px;
  margin-bottom: 1.7rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
}

.video-section {
  padding-top: 2rem;
}

.video-shell {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.03);
}

.video-overlay {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  color: #f7f0e5;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.video-overlay p {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.video-overlay strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.video-fallback-text {
  position: absolute;
  inset: auto 1.1rem 1rem auto;
  background: rgba(14, 18, 24, 0.82);
  border: 1px solid rgba(200, 164, 104, 0.35);
  border-radius: 0.6rem;
  padding: 0.45rem 0.6rem;
  font-size: 0.78rem;
  color: #d7c9b5;
}

.video-shell.video-fallback .hero-video {
  opacity: 0;
}

.video-shell.video-fallback {
  background:
    linear-gradient(130deg, rgba(12, 15, 20, 0.85), rgba(30, 23, 14, 0.6)),
    radial-gradient(circle at 25% 25%, rgba(200, 164, 104, 0.26), rgba(200, 164, 104, 0)),
    linear-gradient(180deg, #11161d, #171009);
}

.feature-grid,
.asset-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.asset-card {
  padding: 1rem;
}

.feature-icon {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.2rem;
}

.feature-card h3,
.asset-card h3 {
  font-size: 1.45rem;
}

.feature-card p,
.asset-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.adv-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.adv-list li {
  margin-bottom: 0.8rem;
  color: #c1b5a2;
}

.adv-list span {
  font-weight: 700;
  color: #f0e6d7;
}

.adv-cards {
  display: grid;
  gap: 0.9rem;
}

.mini-card {
  padding: 1rem;
}

.mini-card h3 {
  font-size: 2rem;
  color: var(--gold-deep);
  margin-bottom: 0.2rem;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
}

.testimonials {
  padding: 1.2rem;
}

.quote-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.quote-track article {
  padding: 0.95rem;
  border-radius: 0.9rem;
  background: linear-gradient(130deg, #171d25, #121820);
  border: 1px solid var(--line);
  color: #d2c6b4;
}

.faq-wrap {
  display: grid;
  gap: 0.75rem;
}

.faq-wrap details {
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: #f1e8dc;
}

.contact-section {
  padding-top: 5.2rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-card {
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.contact-card h3 {
  margin-bottom: 0.2rem;
}

.contact-card a {
  text-decoration: none;
  padding: 0.62rem 0.72rem;
  border-radius: 0.6rem;
  color: #f2e9db;
  border: 1px solid rgba(200, 164, 104, 0.35);
  background: #171d25;
}

.contact-card a.wa {
  color: #95e2ba;
  border-color: rgba(95, 179, 133, 0.28);
  background: #112219;
}

footer {
  border-top: 1px solid rgba(200, 164, 104, 0.24);
  padding: 1.2rem 0 2.2rem;
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #b3a792;
}

.foot-row a {
  text-decoration: none;
  color: #d0af77;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .feature-grid,
  .asset-grid,
  .quote-track {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 82px;
    right: 4%;
    width: min(250px, 88vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem;
    background: rgba(13, 17, 22, 0.97);
    border: 1px solid rgba(200, 164, 104, 0.4);
    border-radius: 0.9rem;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .video-shell,
  .hero-video {
    min-height: 300px;
  }
}

