
:root {
  --bg: #070707;
  --bg-soft: #0d0d0d;
  --surface: #111111;
  --surface-2: #161616;
  --gold: #d3aa3f;
  --gold-light: #ecd77b;
  --text: #f4f4f2;
  --muted: #aaa9a4;
  --line: rgba(211, 170, 63, .22);
  --line-soft: rgba(255,255,255,.08);
  --shadow: 0 24px 70px rgba(0,0,0,.34);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
               "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  overflow-x: hidden;
  line-height: 1.65;
}

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

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

p { color: var(--muted); }

.section-space { padding: 110px 0; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.025em;
}

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

.lead-copy {
  max-width: 640px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.8;
}

.btn {
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: .3s ease;
}

.btn-gold {
  color: #090909;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-gold:hover {
  color: #090909;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(211,170,63,.2);
}

.btn-outline-gold {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}

.btn-outline-gold:hover {
  color: #090909;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  transition: .35s ease;
}

.site-header.scrolled {
  background: rgba(7,7,7,.91);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.navbar { min-height: 82px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: .12em;
  font-weight: 500;
}

.brand-copy small {
  color: var(--gold);
  margin-top: 5px;
  letter-spacing: .35em;
  font-size: 9px;
}

.nav-link {
  position: relative;
  margin: 0 8px;
  color: rgba(255,255,255,.82) !important;
  font-size: 13px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 8px;
  width: calc(100% - 16px);
}

/* Shared inner hero */
.page-hero {
  padding: 170px 0 95px;
  background:
    radial-gradient(circle at 82% 18%, rgba(211,170,63,.12), transparent 25%),
    linear-gradient(180deg, #0b0b0b 0%, #070707 100%);
  border-bottom: 1px solid var(--line-soft);
}

.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -.03em;
}

.page-hero p {
  max-width: 690px;
  margin: 20px 0 0;
  font-size: 17px;
}

/* Cards */
.lux-card {
  height: 100%;
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border-radius: var(--radius);
  overflow: hidden;
  transition: .35s ease;
}

.lux-card:hover {
  transform: translateY(-7px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

/* CTA */
.global-cta { padding: 20px 0 110px; }

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 20%, rgba(211,170,63,.18), transparent 26%),
    linear-gradient(135deg, #141414, #090909);
  padding: 60px;
}

.cta-panel h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  margin-bottom: 14px;
}

.cta-panel p { max-width: 680px; }

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

.footer-brand { margin-bottom: 22px; }

.footer-intro {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-links,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: .25s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 14px;
}

.contact-list span { color: var(--gold); }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  transition: .25s ease;
}

.socials a:hover {
  background: var(--gold);
  color: #080808;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

/* Reveal */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-42px); }
.reveal-right { transform: translateX(42px); }

.reveal-active {
  opacity: 1;
  transform: translate(0,0);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: none;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--gold);
  color: #080808;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .site-header { background: rgba(7,7,7,.95); }
  .navbar-collapse { padding: 18px 0 22px; }
  .section-space { padding: 88px 0; }
  .cta-panel { padding: 44px 34px; }
}

@media (max-width: 767.98px) {
  .section-space { padding: 72px 0; }
  .page-hero { padding: 140px 0 74px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 575.98px) {
  .cta-panel { padding: 34px 24px; }
}
