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

/* ── VARIABLES ────────────────────────────────────────────────────────────── */
:root {
  --bg:        #162B23;
  --bg-deep:   #0F1E18;
  --bg-card:   #1C3830;
  --bg-light:  #213D34;
  --border:    rgba(201,150,63,0.15);
  --gold:      #C9963F;
  --gold-dim:  rgba(201,150,63,0.12);
  --text:      #FFFFFF;
  --text-soft: #D4CFC6;
  --text-muted:#8A9E96;
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── BASE ─────────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

section { padding: 100px 0; }

/* ── NAVIGATION ───────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(15,30,24,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a.active {
  color: var(--gold);
  background: var(--gold-dim);
}

.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--gold-dim) !important;
}

/* ── PAGE HEADER (interior pages) ────────────────────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,150,63,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .label { margin-bottom: 16px; }

.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text);
  opacity: 1;
  animation: none;
  max-width: 100%;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────────── */
.label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.sub {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-soft);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── CARDS ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.card:hover { border-color: rgba(201,150,63,0.35); }

.badge {
  display: inline-block;
  background: rgba(201,150,63,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,150,63,0.3);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── CTA STRIP ────────────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip p {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.cta-strip p em { font-style: italic; color: var(--gold); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 52px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── ANIMATIONS ───────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
