:root{
  --bg:#fbfaf7;
  --text:#141414;
  --muted:#4b4b4b;
  --line:#e8e2d8;
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 18px;
  --max: 980px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}

.wrap{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0 8px;
}

.brand{
  font-weight:600;
  letter-spacing:.04em;
  text-decoration:none;
  color:var(--text);
  font-size:12px;
}

.navlinks a{
  text-decoration:none;
  color:var(--muted);
  margin-left:14px;
  font-size:14px;
}
.navlinks a:hover{color:var(--text)}

.hero{
  padding:34px 0 10px;
}

h1{
  font-family: "EB Garamond", Georgia, serif;
  font-weight:600;
  font-size:54px;
  line-height:1.03;
  margin:0 0 6px;
}
.subtitle{
  margin:0 0 18px;
  color: #72a0c1;
  font-size:18px;
}

.prose{
  max-width: 74ch;
}
.lead{
  font-size:16px;
  color:#1c1c1c;
}

.cta-row{
  display:flex;
  gap:12px;
  margin:22px 0 14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:999px;
  background:var(--text);
  color:white;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}
.btn:hover{opacity:.92}
.btn.ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}

.meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:10px 0 18px;
}
.pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.5);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}

.section{
  padding:34px 0;
  border-top:1px solid var(--line);
}

h2{
  font-family:"EB Garamond", Georgia, serif;
  font-size:30px;
  margin:0 0 14px;
  font-weight:600;
}
h3{
  margin:0 0 8px;
  font-size:16px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card p{margin:8px 0 0; color:var(--muted)}

blockquote{
  margin:18px 0 0;
  padding:14px 16px;
  border-left:3px solid var(--text);
  background:rgba(255,255,255,.55);
  border-radius:12px;
  color:#222;
}

.present{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.present-item{
  background:rgba(255,255,255,.6);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
}
.k{color:var(--muted); font-size:13px}
.v{font-size:15px; margin-top:4px}

.note{color:var(--muted); font-size:13px; margin:10px 0 0}

.reserve{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}
.reserve-box{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.reserve-box p{color:var(--muted); margin:8px 0 12px}
.small{font-size:12px; color:var(--muted); margin:10px 0 0}

.footer{
  padding:24px 0 40px;
  color:var(--muted);
  font-size:13px;
  border-top:1px solid var(--line);
}

@media (max-width: 760px){
  h1{font-size:40px}
  .cards{grid-template-columns: 1fr}
  .present{grid-template-columns:1fr}
  .reserve{grid-template-columns:1fr}
  .navlinks{display:none}
}

.cover{
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 0 auto 14px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
