:root {
  --bg: #0a2012;
  --ink: #fcf9f8;
  --accent: #e4c192;
  --muted: #728a77;
  --border: #364c3c;
  --card-bg: #061b0e;
  --primary-container: #fcf9f8;
  --on-primary: #0a2012;
  --glass-bg: rgba(252, 249, 248, 0.05);
  --glass-border: rgba(252, 249, 248, 0.1);
  --font-display: "Newsreader", serif;
  --font-body: "Manrope", sans-serif;
  --font-label: "Inter", sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.6;
}

.leather-grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: -1;
}

.logo-watermark {
  position: fixed;
  top: 10rem;
  left: -3rem;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12rem;
  color: #000;
  white-space: nowrap;
  z-index: -1;
}

/* --- Splash Screen --- */
.splash-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; /* Was 1, will keep as 1 but use overlay */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10,32,18,0.4) 0%, rgba(10,32,18,0.9) 100%);
  z-index: 1;
}

.splash-container {
  max-width: 600px;
  text-align: center;
  padding: 40px;
  z-index: 10;
}

.luxury-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--accent);
  margin: 0;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.luxury-motto {
  font-size: 1.2rem;
  color: var(--ink);
  opacity: 0.8;
  margin-top: 1rem;
  font-style: italic;
}

.app-links {
  margin-top: 4rem;
}

.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.luxury-btn {
  text-decoration: none;
  padding: 16px 32px;
  border: 1px solid var(--glass-border);
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: 200px;
}

.luxury-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(228, 193, 146, 0.2);
}

.splash-footer {
  position: fixed;
  bottom: 2rem;
  left: 0;
  width: 100%;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-family: var(--font-label);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.sep {
  color: var(--border);
  font-size: 0.7rem;
}

/* --- Privacy Page --- */
.privacy-page .nav-glass {
  background-color: rgba(10, 32, 18, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.logo-link {
  text-decoration: none;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-area {
  padding-top: 60px;
  padding-bottom: 100px;
}

.luxury-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: 2px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
}

.prose h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 2rem;
  color: var(--ink);
}

.prose h2, .prose h3 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  margin-top: 2rem;
}

.luxury-select {
  background: var(--card-bg);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

/* Links */
a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.prose a {
  border-bottom: 1px solid rgba(228, 193, 146, 0.2);
}

.prose a:hover {
  border-bottom-color: var(--accent);
}

/* Animations */
.fade-in { opacity: 0; animation: fadeIn 1s forwards ease-out; }
.delay-1 { opacity: 0; animation: fadeIn 1s forwards ease-out 0.4s; }
.delay-2 { opacity: 0; animation: fadeIn 1s forwards ease-out 0.8s; }
.delay-3 { opacity: 0; animation: fadeIn 1s forwards ease-out 1.2s; }

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

@media (max-width: 640px) {
  .prose h1 { font-size: 2rem; }
  .luxury-card { padding: 24px; }
  .btn-group { flex-direction: column; align-items: center; }
}
