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

:root {
  --ember: #c0392b;
  --ember-gold: #c9880a;
  --ember-glow: #ff6b2b;
  --tide: #1a6b8a;
  --tide-light: #4fb3c8;
  --tide-glow: #7ee8ff;
  --void: #080608;
  --parchment: #d4b896;
  --gold: #b8922a;
  --gold-light: #e8c060;
  --bone: rgba(220,200,170,0.7);
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--parchment);
  font-family: 'DIN Alternate', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

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: 1000;
  opacity: 0.35;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6,4,6,0.97); border-bottom: none;
}
.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  text-decoration: none;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--ember-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212,184,150,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.ornate-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 48px;
  margin: 0 auto;
  max-width: 900px;
}
.ornate-divider::before, .ornate-divider::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.3));
}
.ornate-divider::after { transform: scaleX(-1); }
.ornate-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.btn-primary {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--ember) 0%, #8b1a10 100%);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(192,57,43,0.5);
  border-radius: 3px;
  box-shadow: 0 4px 24px rgba(192,57,43,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d44030 0%, var(--ember) 100%);
  box-shadow: 0 6px 32px rgba(192,57,43,0.5);
  transform: translateY(-1px);
}
.btn-secondary {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  color: var(--parchment);
  text-decoration: none;
  border: 1px solid rgba(184,146,42,0.3);
  border-radius: 3px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: rgba(184,146,42,0.7);
  color: var(--gold-light);
  background: rgba(184,146,42,0.05);
}

.stats-strip {
  border-top: 1px solid rgba(184,146,42,0.1);
  border-bottom: 1px solid rgba(184,146,42,0.1);
  display: flex;
  background: rgba(184,146,42,0.02);
}
.stat-item {
  flex: 1;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(184,146,42,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(212,184,150,0.7);
}

footer {
  border-top: 1px solid rgba(184,146,42,0.1);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.15em;
}
.footer-logo span { color: var(--ember-glow); }
.footer-copy {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,184,150,0.35);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,184,150,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; }
  footer { flex-direction: column; text-align: center; padding: 24px 20px; }
}
/* ── SITE FOOTER ── */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #080608 0%, #050405 100%);
  padding: 80px 48px 0;
  border-top: 1px solid rgba(184,146,42,0.15);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(184,146,42,0.15) 0%, rgba(184,146,42,0.5) 15%, rgba(184,146,42,0.7) 50%, rgba(184,146,42,0.5) 85%, rgba(184,146,42,0.15) 100%);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
}
.footer-wordmark {
  font-family: 'Cinzel Decorative', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.footer-wordmark span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--ember-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(210,200,190,0.4);
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(184,146,42,0.2);
  color: rgba(210,200,190,0.5);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.footer-socials a:hover {
  color: var(--gold-light);
  border-color: rgba(184,146,42,0.5);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-col a {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 13px;
  color: rgba(210,200,190,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(210,200,190,0.9); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}
.footer-bottom-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(184,146,42,0.15) 0%, rgba(184,146,42,0.5) 15%, rgba(184,146,42,0.7) 50%, rgba(184,146,42,0.5) 85%, rgba(184,146,42,0.15) 100%);
  margin-bottom: 20px;
}
.footer-copy {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(210,200,190,0.3);
  text-align: center;
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding: 60px 24px 0; }
}
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(184,146,42,0.15) 0%, rgba(184,146,42,0.5) 15%, rgba(184,146,42,0.7) 50%, rgba(184,146,42,0.5) 85%, rgba(184,146,42,0.15) 100%);
}
