/* ── EMSETIC GLOBAL STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201,168,76,0.15);
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1c1c1c;
  --dark4: #242424;
  --cream: #f5f0e8;
  --text: #e2ddd5;
  --muted: #8a8070;
  --success: #4caf80;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
p { color: var(--muted); line-height: 1.75; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 6%;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-dim);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 900;
  color: var(--gold); letter-spacing: 3px;
  text-decoration: none;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 0.88rem; letter-spacing: 0.5px;
  transition: color 0.2s; font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark);
  padding: 11px 26px; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--dark);
  padding: 16px 42px; border-radius: 4px;
  font-size: 1rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.25s;
  box-shadow: 0 0 30px rgba(201,168,76,0.25);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 0 50px rgba(201,168,76,0.4); }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: 14px 36px; border-radius: 4px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.2s; background: transparent;
  cursor: pointer;
}
.btn-outline:hover { background: var(--gold-dim); }

/* ── SECTION LABELS ── */
.label {
  font-size: 0.72rem; color: var(--gold); letter-spacing: 3.5px;
  text-transform: uppercase; margin-bottom: 14px; display: block;
}

/* ── DIVIDER ── */
.gold-line {
  width: 60px; height: 2px;
  background: var(--gold); margin: 18px 0;
}
.gold-line.center { margin: 18px auto; }

/* ── SECTION ── */
.section { padding: 100px 6%; }
.section-sm { padding: 60px 6%; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 24px 6%;
  display: flex; justify-content: center; align-items: center;
  gap: 56px; flex-wrap: wrap; text-align: center;
}
.trust-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--gold);
}
.trust-item span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.5px; }

/* ── FOOTER ── */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--gold-dim);
  padding: 60px 6% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 14px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; color: var(--cream);
  margin-bottom: 18px; letter-spacing: 1px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--muted); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { animation: fadeUp 0.8s ease both; }
.fade-up-2 { animation: fadeUp 0.8s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.8s 0.3s ease both; }

/* ── PATTERN BG ── */
.pattern-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10 L42 10 L42 42 L10 42 Z' stroke='%23c9a84c' stroke-width='0.3' fill='none' opacity='0.07'/%3E%3C/svg%3E");
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section, .section-sm { padding: 70px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── CARD ── */
.card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 10px; padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); }
