:root {
  --ink: #0b0909;
  --ink-2: #141111;
  --panel: #1b1616;
  --line: rgba(232, 180, 168, 0.18);
  --rose: #e8b4a8;
  --rose-deep: #c47a6e;
  --cream: #f6eee6;
  --muted: #b7a8a0;
  --ok: #8fba86;
  --warn: #d4a574;
  --shadow: 0 28px 70px rgba(0,0,0,.5);
  --max: 1140px;
  --radius: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Serif 4", Georgia, serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.eyebrow {
  font-family: "Outfit", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--rose);
  font-weight: 500;
}
h1,h2,h3 { font-family: "Cormorant Garamond", serif; font-weight: 600; line-height: 1.1; }
.rose { color: var(--rose); }

.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(11,9,9,.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: .04em;
}
.nav-links {
  display: flex; align-items: center; gap: 26px;
  font-family: "Outfit", sans-serif; font-size: .92rem; color: var(--muted);
}
.nav-links a:hover { color: var(--rose); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer; border-radius: 999px;
  padding: 12px 22px; font-family: "Outfit", sans-serif; font-weight: 500; font-size: .92rem;
  transition: .2s ease;
}
.btn-rose {
  background: linear-gradient(180deg, #f0c7bc, #c47a6e);
  color: #1a0d0b;
  box-shadow: 0 10px 24px rgba(196,122,110,.28);
}
.btn-rose:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }
.menu-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  background: none; border: 1px solid var(--line); color: var(--cream); cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 72px;
  min-height: calc(100vh - 76px);
}
.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); margin: 12px 0 16px; }
.lede { color: var(--muted); font-size: 1.12rem; max-width: 34em; margin-bottom: 26px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.age { margin-top: 18px; font-family: "Outfit", sans-serif; font-size: .78rem; color: var(--warn); letter-spacing: .08em; text-transform: uppercase; }

section { padding: 80px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin: 8px 0 10px; }
.section-head p { color: var(--muted); }

.feature {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.cover {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cover img { width: 100%; }
.blurb p { color: #ddd2c8; margin-bottom: 14px; }
.meta {
  font-family: "Outfit", sans-serif;
  color: var(--rose);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 10px;
}

.shelf { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.card-body { padding: 18px; }
.card-body h3 { font-size: 1.45rem; margin: 6px 0 8px; }
.card-body p { color: var(--muted); font-size: .95rem; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
}
.panel h2 { font-size: 2.2rem; margin: 8px 0 12px; }
.facts { list-style: none; }
.facts li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.facts li:last-child { border-bottom: 0; }
.facts b { color: var(--cream); font-weight: 600; }

form { display: grid; gap: 12px; margin-top: 16px; }
label { font-family: "Outfit", sans-serif; font-size: .78rem; color: var(--muted); }
input, textarea {
  width: 100%; background: var(--ink-2); border: 1px solid var(--line);
  color: var(--cream); border-radius: 12px; padding: 12px 14px; outline: none;
}
input:focus, textarea:focus { border-color: var(--rose); }
textarea { min-height: 100px; resize: vertical; }
.toast { display: none; color: var(--ok); font-family: "Outfit", sans-serif; }

.warn-box {
  margin-top: 22px;
  border: 1px solid rgba(212,165,116,.35);
  color: var(--warn);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: .92rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  font-family: "Outfit", sans-serif;
  color: var(--muted);
  font-size: .88rem;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero, .feature, .shelf, .about { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(11,9,9,.96); flex-direction: column; padding: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: grid; place-items: center; }
  .hero { padding-top: 28px; }
}
