:root {
  --l-bg1: #1a1418;
  --l-bg2: #0d0a0c;
  --l-text: #f4f0febf;
  --l-muted: #b8a9b5;
  --l-accent: #c9a87c;
  --l-glass: rgba(255, 255, 255, 0.06);
}

.landing-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--l-text);
  background: linear-gradient(165deg, var(--l-bg1) 0%, var(--l-bg2) 100%);
  position: relative;
  overflow-x: hidden;
}

.landing-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(201, 168, 124, 0.12), transparent 60%),
    radial-gradient(600px 300px at 10% 90%, rgba(200, 120, 140, 0.08), transparent 55%);
  z-index: 0;
}

.landing-header {
  position: relative;
  z-index: 1;
  padding: 1.5rem clamp(1rem, 4vw, 2rem);
}

.landing-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l-accent);
}

.landing-main {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2rem) 4rem;
}

.landing-hero {
  margin-bottom: 3rem;
}

.landing-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #fff;
}

.landing-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--l-muted);
  max-width: 52ch;
  margin: 0;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.glass-landing {
  background: var(--l-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.landing-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #fff;
}

.landing-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--l-muted);
  line-height: 1.6;
}

.landing-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.85rem;
  color: var(--l-muted);
}
