* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  background:#050505;
  color:#f5efe5;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.6;
}
a { color:inherit; }
.shell { width:min(1080px,100%); margin:0 auto; padding:0 20px; }
.nav {
  border-bottom:1px solid rgba(245,239,229,.14);
  background:rgba(5,5,5,.92);
}
.nav .shell {
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand {
  font-weight:950;
  letter-spacing:.08em;
  text-decoration:none;
}
.nav-links {
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:rgba(245,239,229,.72);
  font-size:14px;
  font-weight:800;
}
.nav-links a { text-decoration:none; }
.hero {
  padding:74px 0 52px;
  background:
    radial-gradient(circle at 20% 10%, rgba(197,147,84,.22), transparent 28%),
    radial-gradient(circle at 80% 42%, rgba(123,74,38,.26), transparent 34%);
}
.eyebrow {
  margin:0 0 14px;
  color:#c59354;
  font-size:12px;
  font-weight:950;
  letter-spacing:.18em;
  text-transform:uppercase;
}
h1,h2,h3 { line-height:1.05; margin:0; }
h1 {
  max-width:900px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(42px,9vw,92px);
  font-weight:500;
}
.lead {
  max-width:760px;
  margin:24px 0 0;
  color:rgba(245,239,229,.78);
  font-size:clamp(18px,2vw,22px);
}
.section {
  padding:48px 0;
  border-top:1px solid rgba(245,239,229,.10);
}
.grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.panel {
  padding:24px;
  border:1px solid rgba(245,239,229,.14);
  background:rgba(255,255,255,.045);
}
.panel h2,.panel h3 { margin-bottom:12px; }
.muted { color:rgba(245,239,229,.68); }
.prices {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 0;
}
.prices span {
  border:1px solid rgba(245,239,229,.18);
  padding:8px 10px;
  font-weight:900;
  background:rgba(5,5,5,.42);
}
.btn-row {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}
.btn {
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:1px solid rgba(245,239,229,.24);
  border-radius:999px;
  text-decoration:none;
  font-weight:950;
}
.btn.primary {
  background:#f5efe5;
  color:#050505;
}
.crumbs {
  margin:22px 0 0;
  color:rgba(245,239,229,.62);
  font-size:14px;
}
.crumbs a { text-decoration:none; }
dl {
  display:grid;
  grid-template-columns:160px 1fr;
  gap:10px 18px;
  margin:0;
}
dt { color:rgba(245,239,229,.62); font-weight:850; }
dd { margin:0; }
footer {
  border-top:1px solid rgba(245,239,229,.14);
  color:rgba(245,239,229,.62);
  padding:30px 0;
}
@media (max-width:760px) {
  .nav .shell { align-items:flex-start; flex-direction:column; padding-top:18px; padding-bottom:18px; }
  .grid { grid-template-columns:1fr; }
  dl { grid-template-columns:1fr; }
}
