@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-500.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-500-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/figtree-400.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/figtree-600.woff2") format("woff2");
}

:root {
  --parch: #f8f1e6;
  --soot: #1c1712;
  --mute: #6e6258;
  --flame: #cc5a2e;
  --glass: #2f4f46;
  --lamp: #fffaf2;
  --line: #ddd2c2;
  --max: 980px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--parch);
  color: var(--soot);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.64;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--glass); text-decoration: none; }
a:hover { color: var(--flame); text-decoration: underline; }
button, input, textarea { font: inherit; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: var(--flame); color: #fff; padding: 8px; z-index: 50; }

.lamp {
  background: var(--glass);
  color: var(--lamp);
  padding: 18px 0 0;
}
.lamp .inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--lamp);
  text-decoration: none;
}
.brand:hover { color: #f3d2c0; text-decoration: none; }
.brand b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 1.85rem;
  letter-spacing: 0.08em;
}
.brand small {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9d6d0;
}
.flame {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #9bb5ab;
  padding: 6px 10px;
  color: #f3d2c0;
}
.wick-row {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 12px 0 0;
}
.topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--soot);
  padding: 7px 10px;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding: 10px 0 14px;
  border-bottom: 1px solid var(--line);
}
.nav a {
  color: var(--mute);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav a[aria-current="page"], .nav a:hover { color: var(--flame); text-decoration: none; font-weight: 600; }
.drawer {
  display: none;
  padding: 12px 0 20px;
  border-bottom: 1px solid var(--line);
}
.drawer.open { display: grid; gap: 8px; grid-template-columns: 1fr 1fr; }
.drawer a { color: var(--glass); }

main { padding-bottom: 48px; }
.wrap { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.hero-glass {
  width: min(1120px, calc(100% - 24px));
  margin: 18px auto 0;
  position: relative;
  background: var(--soot);
}
.hero-glass img {
  width: 100%;
  height: min(62vh, 620px);
  object-fit: cover;
}
.hero-glass figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(28, 23, 18, 0.7);
  color: #f3d2c0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px;
}
.hero-copy {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 8px;
}
.kicker {
  color: var(--flame);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-copy h1, .board h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.02;
  margin: 10px 0 16px;
}
.lede { color: var(--mute); font-size: 1.08rem; max-width: 40rem; }
.btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.btn {
  display: inline-block;
  background: var(--flame);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 14px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: #a84622; color: #fff; text-decoration: none; }
.btn.ghost { background: transparent; color: var(--glass); border: 1px solid var(--glass); }
.wicks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px;
  color: var(--mute);
}
.wicks b { color: var(--flame); display: block; font-size: 1.05rem; margin-top: 4px; }
.wicks a { color: var(--flame); }

.glows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(1120px, calc(100% - 24px));
  margin: 28px auto;
  border: 1px solid var(--line);
}
.glow-card {
  background: var(--lamp);
  padding: 24px 22px;
  min-height: 180px;
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--line);
}
.glow-card:last-child { border-right: 0; }
.glow-card:hover { background: #fff; text-decoration: none; }
.glow-card .no { color: var(--flame); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.glow-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  margin: 14px 0 8px;
  font-weight: 500;
}
.glow-card p { color: var(--mute); margin: 0; font-size: 0.95rem; }

.board { padding: 8px 0 20px; }
.prose h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 500;
  margin: 1.4em 0 0.5em;
}
.prose h3 { font-size: 1.1rem; margin: 1.2em 0 0.4em; }
.prose p { max-width: 42rem; }
.prose ul, .prose ol { max-width: 42rem; }
.prose code { font-size: 0.9em; }
.plate { margin: 24px 0; }
.plate figcaption { font-size: 13px; color: var(--mute); margin-top: 8px; }
table.wick {
  width: 100%;
  max-width: 42rem;
  border-collapse: collapse;
  font-size: 15px;
  margin: 18px 0;
}
table.wick th, table.wick td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 9px 8px 9px 0;
  vertical-align: top;
}
table.wick th { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.pull {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.28;
  color: var(--glass);
  max-width: 36rem;
  margin: 22px 0;
}
.file-stamp {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 18px;
}
.trust-note {
  border-top: 3px solid var(--flame);
  background: var(--lamp);
  padding: 16px 18px;
  margin: 22px 0;
}
.src-list { margin: 0; padding-left: 1.15em; }
.src-list li { margin: 0 0 8px; }
.log { font-size: 13px; color: var(--mute); }
.faq details { border-bottom: 1px solid var(--line); padding: 10px 0; max-width: 42rem; }
.faq summary { cursor: pointer; font-weight: 600; }
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.related a {
  border: 1px solid var(--line);
  background: var(--lamp);
  padding: 16px;
  color: inherit;
  text-decoration: none;
}
.related a span { display: block; color: var(--flame); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.related a strong { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; font-size: 1.15rem; }

form.sheet { display: grid; gap: 14px; max-width: 32rem; }
form.sheet label { font-size: 13px; color: var(--mute); }
form.sheet input, form.sheet textarea {
  width: 100%;
  background: var(--lamp);
  border: 1px solid var(--line);
  color: var(--soot);
  padding: 12px;
}
form.sheet textarea { min-height: 140px; }

.site-foot {
  background: var(--soot);
  color: #cfc4b6;
  padding: 48px 0 28px;
  font-size: 14px;
  margin-top: 24px;
}
.foot-grid { display: grid; gap: 28px; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-foot a { color: #e8b89a; }
.site-foot strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--lamp);
  font-size: 1.4rem;
  font-weight: 500;
}
.site-foot nav { display: grid; gap: 7px; }
.legal { margin-top: 28px; padding-top: 16px; border-top: 1px solid #3a322a; font-size: 12px; color: #8a7d70; }

.cookie {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  max-width: 360px;
  width: calc(100% - 32px);
  background: var(--lamp);
  color: var(--soot);
  border: 1px solid var(--flame);
  padding: 14px;
  display: none;
  z-index: 40;
}
.cookie.open { display: block; }
.cookie[hidden] { display: none !important; }
.cookie p { margin: 0 0 10px; font-size: 13px; }
.cookie .row { display: flex; gap: 8px; }

::selection { background: var(--flame); color: #fff; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media (max-width: 820px) {
  .burger { display: inline-block; }
  .nav { display: none; }
  .hero-glass img { height: 280px; }
  .glows { grid-template-columns: 1fr; }
  .glow-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .related { grid-template-columns: 1fr; }
}
