:root {
  --gold: #e2b85a;
  --sand: #f6edd4;
  --ink: #102016;
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--sand);
  overflow-x: hidden;
}
.bg {
  position: fixed; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: 0;
}
.veil {
  position: fixed; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,18,12,0.25) 0%, rgba(8,18,12,0.45) 45%, rgba(8,18,12,0.82) 100%),
    radial-gradient(900px 500px at 50% 20%, rgba(226,184,90,0.18), transparent 60%);
}
.home {
  position: relative; z-index: 2;
  min-height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 5vw, 4rem) 6vw 4.5rem;
  max-width: 980px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.75rem; color: var(--gold); margin: 0 0 0.75rem;
}
h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.95;
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}
h1 em { font-style: italic; color: var(--gold); }
.lead { margin: 1rem 0 1.5rem; color: #d7e6db; font-size: 1.05rem; }
.menu {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 9.5rem; padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(226,184,90,0.95), #c9922f);
  color: var(--ink); font-weight: 700; text-decoration: none;
  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
@media (max-width: 640px) {
  .btn { flex: 1 1 calc(50% - 0.85rem); min-width: 0; }
}
