:root {
  --bg: #0b0e12;
  --bg-2: #10151b;
  --card: #161c24;
  --card-hover: #1b2330;
  --text: #eef1f4;
  --muted: #95a0ab;
  --accent: #d4652a;
  --accent-ink: #fff8f3;
  --accent-dim: rgba(212, 101, 42, 0.16);
  --border: #2a333e;
  --line: #222b35;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius: 14px;
  --serif: "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1100px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(212, 101, 42, 0.12), transparent 55%),
    radial-gradient(900px 420px at 110% 8%, rgba(90, 120, 150, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

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

a { color: inherit; }

.skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--accent);
  color: #fff;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  z-index: 20;
}
.skip:focus { top: 1rem; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(11, 14, 18, 0.78);
  border-bottom: 1px solid var(--line);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #101318;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 650;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand-tag {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.nav-menu {
  display: none;
  margin: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 0.7rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-appearance: none;
  appearance: none;
}

.nav-toggle::-webkit-details-marker {
  display: none;
}

.nav-toggle-icon {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.hero {
  padding: 3.25rem 0 2.25rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-weight: 650;
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 20ch;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.55rem 1.05rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover { filter: brightness(1.08); }

.btn-ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); }

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.note {
  margin: 0 0 2.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: var(--card);
  color: var(--muted);
  font-size: 0.94rem;
  border-radius: 0 10px 10px 0;
}

.section {
  padding: 0 0 2.6rem;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.section-kicker {
  color: var(--muted);
  font-size: 0.86rem;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 0 transparent;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.card:hover {
  border-color: #3a4654;
  background: var(--card-hover);
  transform: translateY(-2px);
}

.thumb {
  position: relative;
  background:
    linear-gradient(180deg, #1a2028, #12171d);
  border-bottom: 1px solid var(--line);
}

.thumb-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.thumb-blank {
  aspect-ratio: 16 / 10;
}

.thumb-label {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 650;
  color: #f3ece4;
  background: rgba(11, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.05rem 1.1rem;
  flex: 1;
}

.name {
  font-weight: 650;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.desc {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
  margin: 0;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.price {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 1.15rem;
}

a.buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.2rem;
  min-height: 2.35rem;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
}

a.buy:hover { filter: brightness(1.08); }
a.buy:focus-visible,
.btn:focus-visible,
.nav a:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible,
.crumb a:focus-visible,
.related a:focus-visible,
.guide-body a:focus-visible {
  outline: 2px solid #f0c09a;
  outline-offset: 2px;
}

.card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  background:
    linear-gradient(180deg, rgba(212, 101, 42, 0.08), transparent 42%),
    var(--card);
  border-color: #6a3a22;
}

.card.featured .thumb {
  border-bottom: 1px solid var(--line);
}

.card.featured .card-body {
  padding: 1.25rem 1.2rem 1.35rem;
  gap: 0.65rem;
}

.badge {
  display: inline-flex;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(212, 101, 42, 0.28);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
}

.card.featured .name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 650;
}

.card.featured .desc {
  font-size: 1rem;
  max-width: 38rem;
}

.includes {
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.includes li {
  font-size: 0.8rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
}

.site-footer {
  margin-top: 1rem;
  padding: 2.2rem 0 2.8rem;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer h3 {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--text); }

.foot-note {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.lightbox {
  max-width: min(1100px, 96vw);
  max-height: 92vh;
  padding: 0.7rem 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0b0e12;
  color: var(--text);
}
.lightbox::backdrop { background: rgba(6, 8, 11, 0.78); }
.lightbox img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(92vh - 3.2rem);
  object-fit: contain;
  background: #10151b;
}
.lightbox-close {
  display: block;
  margin: 0 0 0.55rem auto;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}
.lightbox-close:hover { color: var(--text); }

.crumb {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

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

.crumb a:hover,
.crumb a:focus-visible {
  color: var(--text);
}

.guide-hero .hero-grid {
  grid-template-columns: 1fr;
}

.guide-hero h1 {
  max-width: 24ch;
}

.guide-body {
  max-width: 42rem;
  padding-bottom: 0.5rem;
}

.guide-body h2 {
  margin: 2rem 0 0.55rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.guide-body p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.guide-body p strong {
  color: var(--text);
  font-weight: 650;
}

.guide-body ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.guide-body li {
  margin: 0.28rem 0;
}

.guide-body a {
  color: var(--text);
  text-underline-offset: 0.15em;
}

.guide-body a:hover {
  color: var(--accent);
}

.aeo {
  margin: 0 0 1.6rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(212, 101, 42, 0.28);
  background: var(--accent-dim);
  border-radius: 10px;
  color: var(--text);
  font-size: 1.02rem;
}

.aeo-label {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aeo p {
  margin: 0;
  color: var(--text);
}

.sample-line {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.sample-line strong {
  color: var(--text);
}

.related {
  margin: 2.2rem 0 0;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
}

.related h2 {
  margin: 0 0 0.45rem;
}

.related ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related li {
  margin: 0;
}

.related a {
  display: block;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
}

.related li:last-child a {
  border-bottom: 0;
}

.related a:hover,
.related a:focus-visible {
  color: var(--accent);
}

.aisle-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.aisle-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 550;
}

.aisle-jump a:hover,
.aisle-jump a:focus-visible {
  color: var(--accent);
  border-color: rgba(212, 101, 42, 0.45);
}

.guide-index {
  padding-bottom: 2.4rem;
}

.guide-index .card-body {
  gap: 0.55rem;
}

.guide-index .card {
  text-decoration: none;
}

a.card.guide-card {
  color: inherit;
}

a.card.guide-card:hover .name,
.guide-card .name a:hover {
  color: var(--accent);
}

.guide-card .name a {
  color: inherit;
  text-decoration: none;
}

.hold-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hold-note a {
  color: var(--text);
  text-underline-offset: 0.15em;
}

.hold-note a:hover {
  color: var(--accent);
}

@media (min-width: 700px) {
  .hero-grid { grid-template-columns: 1.4fr 0.8fr; }
  .guide-hero .hero-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .card.featured {
    grid-template-columns: 1fr;
  }
  .card.featured .thumb { border-bottom: 1px solid var(--line); border-right: 0; }
  .card.featured .thumb img { aspect-ratio: 16 / 9; height: auto; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 980px) {
  .grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero { padding: 4.25rem 0 2.75rem; }
}

@media (max-width: 640px) {
  .site-header .inner {
    position: relative;
    min-height: 3.75rem;
    padding: 0.35rem 0;
    gap: 0.75rem;
  }

  .nav-menu {
    display: block;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 12;
    min-width: min(17.5rem, calc(100vw - 2rem));
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.4rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(16, 21, 27, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-menu[open] + .nav {
    display: flex;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0 0.85rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero {
    padding: 1.75rem 0 1.1rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    margin-top: 1.25rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 2.75rem;
  }

  .trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin: 1.15rem 0 0;
  }

  .note {
    margin: 0 0 1.85rem;
  }
}
