:root {
  --ground: #0c0a0f;
  --card: #15121b;
  --line: #2e2839;
  --text: #f4f1f8;
  --muted: #a49bb4;
  --rose: #e85d8a;
  --rose-soft: #f2839c;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

header.top {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--rose-soft), var(--rose));
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

nav.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
}

nav.top-nav a {
  color: var(--muted);
  text-decoration: none;
}

nav.top-nav a:hover { color: var(--rose-soft); }

main { padding: 34px 0 56px; }

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 600;
  margin: 40px 0 10px;
}

h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--rose-soft);
  margin: 26px 0 8px;
}

p { margin: 0 0 14px; }

a { color: var(--rose-soft); }

.lede {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 26px;
}

ul { margin: 0 0 16px; padding-left: 20px; }
li { margin-bottom: 7px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  margin: 22px 0;
}

.card h2 { margin-top: 0; }

.price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 6px;
}

.tag {
  display: inline-block;
  border: 1px solid var(--rose);
  color: var(--rose-soft);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.draft {
  border: 1px solid var(--rose);
  background: rgba(232, 93, 138, 0.08);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--text);
  margin: 0 0 26px;
}

.sample {
  background: #1d1926;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.55;
}

.sample .who {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.quote {
  border-left: 3px solid var(--rose);
  padding: 4px 0 4px 14px;
  margin: 0 0 18px;
  color: #cfc7db;
  font-size: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 0 0 18px;
}

th, td {
  text-align: left;
  vertical-align: top;
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--muted);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.shot {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 6px 0 8px;
}

figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

figure { margin: 0; }

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

footer.bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 10px;
}

footer.bottom a { color: var(--muted); text-decoration: none; }
footer.bottom a:hover { color: var(--rose-soft); }

@media (min-width: 700px) {
  h1 { font-size: 44px; }
  h2 { font-size: 26px; }
  main { padding: 48px 0 64px; }
}
