/* Dooner Designs — local file:// preview. Not live. */
:root {
  --bg: #f3efe6;
  --bg-raised: #faf8f3;
  --ink: #1b1915;
  --ink-soft: #5a554c;
  --muted: #8a847a;
  --line: #d6d0c4;
  --accent: #2d4638;
  --accent-hover: #22362b;
  --paper: #fffdf8;
  --warn: #6b4a2e;
  --radius: 2px;
  --serif: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --measure: 40rem;
  --page: 52rem;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-It.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"),
       url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Medium.woff2") format("woff2"),
       url("../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"),
       url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
a:hover { color: var(--accent-hover); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  background: var(--paper);
  padding: 0.4rem 0.7rem;
}

.preview-banner {
  background: var(--ink);
  color: var(--bg);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 1rem;
}

.wrap {
  width: min(var(--page), calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

/* Light JPEG (white ground) on cream only. Dark JPEG is #000-only. */
.brand {
  display: block;
  line-height: 0;
  text-decoration: none;
}
.brand img {
  width: 4rem;
  height: auto;
  background: #fff;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.wordmark:hover { color: var(--ink); }

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
}
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

main { padding: 3.25rem 0 4.5rem; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.85rem;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.15rem, 4.5vw, 3.15rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.45rem;
  margin: 2.75rem 0 0.85rem;
}

h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
}

.deck {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.prose, .legal {
  max-width: var(--measure);
}
.prose p, .legal p {
  margin: 0 0 1rem;
}

.price {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin: 0 0 1.75rem;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.72rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #f7f4ee;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { background: var(--accent-hover); color: #f7f4ee; border-color: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
}
.btn-ghost:hover {
  background: transparent;
  color: var(--accent-hover);
}

.btn-disabled,
.btn[aria-disabled="true"] {
  background: #cfc8ba;
  border-color: #cfc8ba;
  color: #5a554c;
  cursor: not-allowed;
  pointer-events: none;
}

.distinguish {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}
.list li { margin: 0 0 0.55rem; }

.steps {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.steps li { margin: 0 0 0.45rem; }

.waitlist {
  margin-top: 3.5rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  max-width: 32rem;
}
.waitlist .eyebrow { margin-bottom: 0.4rem; }
.waitlist h2 { margin: 0 0 0.7rem; font-size: 1.35rem; }
.waitlist p { margin: 0 0 1rem; color: var(--ink-soft); font-size: 0.98rem; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: flex-end;
}
.form-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}
.form-row input[type="email"] {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  min-width: 16rem;
  flex: 1;
}
.form-row input[type="email"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.helper {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.65rem 0 0;
}
.form-note {
  font-size: 0.875rem;
  color: var(--warn);
  margin: 0.7rem 0 0;
}

.updated {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.5rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}
.footer-links {
  display: flex;
  gap: 1rem;
}
.footer-links a { color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.site-footer .mail { color: var(--ink-soft); text-decoration: none; }
.site-footer .mail:hover { color: var(--ink); }

@media (max-width: 640px) {
  .wrap { width: calc(100% - 2rem); }
  .site-header { flex-direction: column; gap: 0.75rem; }
  .form-row input[type="email"] { min-width: 100%; }
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13.5rem, 1fr));
  gap: 1.35rem 1.1rem;
  margin: 1.5rem 0 2.5rem;
}
.pack-grid figure { margin: 0; }
.pack-grid img {
  width: 100%;
  background: #e4ddd0;
  border: 1px solid var(--line);
}
.pack-grid figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.4rem;
}
.buy-note {
  font-size: 0.8125rem;
  color: var(--warn);
  margin: -1.1rem 0 1.5rem;
}
.notice {
  border: 1px solid var(--line);
  padding: 1.2rem 1.35rem;
  max-width: var(--measure);
  margin: 2rem 0 0;
}
.notice h2 { margin-top: 0; font-size: 1.2rem; }
.quiet-line {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 3rem 0 0;
  max-width: var(--measure);
}
.quiet-line a { color: var(--ink-soft); }

.catalog {
  display: grid;
  gap: 1.5rem;
  margin: 0.5rem 0 2rem;
}
.catalog-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 1.5rem 1.4rem 1.25rem;
}
.catalog-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.45rem;
}
.catalog-card p {
  color: var(--ink-soft);
  margin: 0 0 0.85rem;
}
.catalog-card .price { margin-bottom: 1rem; }
.catalog-card .actions { margin-bottom: 0; }
