:root {
  --black: #070706;
  --gold: #c87533;
  --ochre: #b8612a;
  --copper: #c87533;
  --cream: #f3ead2;
  --mute: #b7aa8e;
  --line: #3a3428;
  --paper: #efe6cf;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Outfit, system-ui, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }
header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(7,7,6,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.word {
  font-family: "UnifrakturCook", "Cinzel Decorative", Georgia, serif;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--copper);
  font-weight: 700;
}
.links { display: flex; gap: 22px; font-size: 0.86rem; color: var(--mute); }
.links a { text-decoration: none; }
.links a[aria-current="page"] { color: var(--cream); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ochre); color: #1a1208; text-decoration: none;
  border: 0; cursor: pointer;
  font-family: "UnifrakturCook", "Cinzel Decorative", Georgia, serif; letter-spacing: 0.08em;
  padding: 12px 18px; border-radius: 2px; font-size: 0.86rem;
}
.btn.ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--line);
}
.hero {
  padding: 36px 0 64px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.seal { width: min(420px, 100%); margin-inline: auto; }
.kicker {
  font-family: "Cinzel Decorative", Cinzel, Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, h2, h3 {
  font-family: "UnifrakturCook", "Cinzel Decorative", Georgia, serif;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(2.8rem, 8vw, 5.6rem); margin: 10px 0 14px; color: var(--copper); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--copper); font-weight: 700; }
.lede { color: var(--mute); font-size: 1.02rem; max-width: 34rem; line-height: 1.45; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.photo { border: 1px solid var(--line); background: #14120e; }
section { padding: 72px 0; }
.band { border-top: 1px solid var(--line); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.card {
  border: 1px solid var(--line);
  padding: 20px 18px 22px;
  background: #0e0d0b;
}
.tag {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.card h3 { margin: 10px 0 8px; font-size: 1.25rem; }
.card p { margin: 0; color: var(--mute); font-size: 0.95rem; }
.price {
  font-family: "UnifrakturCook", "Cinzel Decorative", Georgia, serif;
  font-size: 1.35rem;
  margin: 16px 0 6px;
}
.ing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ing article { border: 1px solid var(--line); padding: 20px; background: #0e0d0b; }
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }
.cream-band { background: var(--paper); color: #1b160f; }
.cream-band .kicker { color: #7a4a12; }
.cream-band .lede { color: #4d4436; }
form { display: grid; gap: 10px; }
input, select, textarea {
  border: 1px solid var(--line); background: #14120e;
  color: var(--cream); padding: 12px; font: inherit;
}
input, select { height: 48px; padding: 0 12px; }
textarea { min-height: 140px; resize: vertical; }
.wait { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px; align-items: start; }
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--mute);
  font-size: 0.86rem;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot a { color: var(--mute); }
.note { font-size: 0.78rem; color: var(--mute); }
.swatch {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block; vertical-align: middle; margin-right: 6px;
  border: 1px solid var(--line);
}
table.sizes {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  font-size: 0.95rem;
}
table.sizes th, table.sizes td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 12px 8px;
}
table.sizes th {
  color: var(--gold); font-weight: 500; letter-spacing: 0.08em;
  font-size: 0.72rem; text-transform: uppercase;
}
.prose { max-width: 40rem; }
.prose p { color: var(--mute); }
.page-hero { padding: 56px 0 24px; }
@media (max-width: 880px) {
  .links { display: none; }
  .hero, .split, .wait, .ing, .grid-3, .grid-5 { grid-template-columns: 1fr; }
}

.cream-band h1, .cream-band h2, .cream-band h3 { color: #8a4a1a; }
.cream-band .word { color: #8a4a1a; }
.card h3 { color: var(--copper); }
