:root {
  --bg: #14100d;
  --bg-panel: #1c1712;
  --walnut: #3a2c22;
  --brass: #c9a15a;
  --brass-bright: #e0bd7d;
  --cream: #f2ece1;
  --cream-dim: #b8ac9a;
  --line: #322820;
  --danger: #c97a5a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
header {
  border-bottom: 1px solid var(--line);
  background: rgba(20, 16, 13, 0.9);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text .name {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.brand-text .tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--brass);
  text-transform: uppercase;
  margin-top: 1px;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a.nav-link {
  font-size: 14px;
  color: var(--cream-dim);
  transition: color 0.2s;
}
nav a.nav-link:hover, nav a.nav-link.active { color: var(--cream); }

.btn-brass {
  background: var(--brass);
  color: #1c1712;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 999px;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-brass:hover { background: var(--brass-bright); transform: translateY(-1px); }

@media (max-width: 720px) {
  nav .nav-link { display: none; }
}

/* Social strip */
.social-strip {
  background: var(--walnut);
  border-bottom: 1px solid var(--line);
}
.social-strip-inner {
  padding: 10px 32px;
  text-align: center;
}
.social-strip span {
  font-size: 13px;
  color: var(--cream);
}

/* Hero */
.hero {
  padding: 64px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.06;
  color: var(--cream);
}

.hero h1 em {
  font-style: italic;
  color: var(--brass-bright);
}

.hero p.lede {
  margin-top: 26px;
  font-size: 17px;
  color: var(--cream-dim);
  max-width: 46ch;
}

.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-ghost {
  font-size: 14px;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--cream-dim); }

.hero-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--bg-panel);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-price-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--brass);
  color: #1c1712;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: background 0.2s, transform 0.2s;
}
.hero-price-tag:hover { background: var(--brass-bright); transform: translateY(-1px); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .hero { padding: 56px 0 64px; }
}

/* How it works */
.how {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.section-head { max-width: 60ch; margin-bottom: 56px; }
.section-head .kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.section-head h2 { font-size: 34px; color: var(--cream); }
.section-head p { margin-top: 14px; color: var(--cream-dim); font-size: 16px; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.how-card {
  background: var(--bg-panel);
  padding: 36px 34px;
}

.how-card .step-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--brass);
  font-size: 15px;
  margin-bottom: 14px;
}

.how-card h3 { font-size: 20px; color: var(--cream); margin-bottom: 10px; font-weight: 500; }
.how-card p { color: var(--cream-dim); font-size: 15px; }

@media (max-width: 720px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* Guides preview / listing */
.guides {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.guide-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.guide-card:hover { border-color: var(--brass); transform: translateY(-3px); }

.guide-card .thumb {
  aspect-ratio: 16 / 11;
  background: linear-gradient(160deg, #2a221a, #171310);
  overflow: hidden;
  border-bottom: 1px dashed var(--line);
}
.guide-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.2s, transform 0.3s;
}
.guide-card:hover .thumb img {
  filter: brightness(0.92) saturate(0.95);
  transform: scale(1.03);
}

.guide-card .body { padding: 22px 22px 26px; }
.guide-card .cat {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.guide-card h3 { font-size: 19px; font-weight: 500; color: var(--cream); margin-bottom: 8px; }
.guide-card p { font-size: 14px; color: var(--cream-dim); }

.card-ctas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-card .read-link {
  font-size: 13px;
  color: var(--brass-bright);
}

.btn-check-price {
  background: var(--brass);
  color: #1c1712;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.btn-check-price:hover { background: var(--brass-bright); transform: translateY(-1px); }

@media (max-width: 900px) {
  .guide-list { grid-template-columns: 1fr; }
}

/* CTA band */
.cta-band {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 { font-size: 32px; color: var(--cream); margin-bottom: 16px; }
.cta-band p { color: var(--cream-dim); max-width: 48ch; margin: 0 auto 32px; }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand .name { font-family: 'Fraunces', serif; font-size: 17px; color: var(--cream); }
.footer-brand .tag { font-size: 11px; letter-spacing: 0.12em; color: var(--brass); text-transform: uppercase; margin-top: 4px; }

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--cream-dim);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: #6b6055;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Page header (used on interior pages) ---------- */
.page-header {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-header .kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}
.page-header h1 {
  font-size: 44px;
  color: var(--cream);
  line-height: 1.1;
}
.page-header p.lede {
  margin-top: 18px;
  font-size: 16px;
  color: var(--cream-dim);
  max-width: 60ch;
}

@media (max-width: 720px) {
  .page-header h1 { font-size: 32px; }
}

/* ---------- Guide / article layout ---------- */
.guide-article {
  padding: 56px 0 96px;
}
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.guide-body h2 {
  font-size: 26px;
  color: var(--cream);
  margin-top: 48px;
  margin-bottom: 16px;
}
.guide-body h2:first-child { margin-top: 0; }
.guide-body p {
  color: var(--cream-dim);
  font-size: 16px;
  margin-bottom: 16px;
}
.guide-body ol, .guide-body ul {
  color: var(--cream-dim);
  font-size: 16px;
  margin: 0 0 20px 22px;
}
.guide-body li { margin-bottom: 10px; }
.guide-body strong { color: var(--cream); }

.mistake-box {
  background: var(--bg-panel);
  border: 1px solid var(--danger);
  border-left: 4px solid var(--danger);
  border-radius: 10px;
  padding: 24px 26px;
  margin: 28px 0;
}

.quick-summary {
  background: var(--bg-panel);
  border: 1px solid var(--brass);
  border-left: 4px solid var(--brass);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.quick-summary-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
  font-weight: 600;
}
.quick-summary p { color: var(--cream); font-size: 15px; margin: 0; }

.related-guides { padding: 64px 0 80px; border-top: 1px solid var(--line); }
.mistake-box .label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--danger);
  margin-bottom: 12px;
  font-weight: 600;
}
.mistake-box ul { margin: 0 0 0 20px; }
.mistake-box li { color: var(--cream-dim); margin-bottom: 8px; }
.mistake-box li strong { color: var(--cream); }

/* Buy box (sticky sidebar) */
.buy-box {
  position: sticky;
  top: 96px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
}
.buy-box img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
  filter: brightness(0.88) saturate(0.9);
}
.thumb-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  margin-bottom: 18px;
  background: linear-gradient(160deg, #2a221a, #171310);
  border: 1px dashed var(--line);
}
.buy-box .name { font-size: 17px; color: var(--cream); margin-bottom: 6px; font-weight: 500; }
.buy-box .desc { font-size: 13px; color: var(--cream-dim); margin-bottom: 18px; }
.buy-box .btn-brass { display: block; text-align: center; width: 100%; margin-bottom: 10px; }
.buy-box .fine-print { font-size: 11px; color: #6b6055; text-align: center; }

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--walnut);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 32px 0;
}
.inline-cta p { color: var(--cream); margin: 0; font-size: 15px; }

@media (max-width: 900px) {
  .guide-layout { grid-template-columns: 1fr; }
  .buy-box { position: static; }
}

/* ---------- Simple content pages (About, Legal) ---------- */
.content-page {
  padding: 56px 0 96px;
}
.content-page .prose { max-width: 72ch; }
.content-page h2 { font-size: 22px; color: var(--cream); margin-top: 36px; margin-bottom: 12px; }
.content-page h2:first-child { margin-top: 0; }
.content-page p { color: var(--cream-dim); font-size: 16px; margin-bottom: 16px; }
.content-page ul { color: var(--cream-dim); margin: 0 0 16px 22px; }
.content-page li { margin-bottom: 8px; }

/* ---------- Contact form ---------- */
.contact-form { max-width: 560px; }
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13px;
  color: var(--cream-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-row input, .form-row textarea {
  width: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.form-row textarea { resize: vertical; min-height: 120px; }

/* ---------- Sitemap page ---------- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.sitemap-col h3 { font-size: 15px; color: var(--brass); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.sitemap-col a { display: block; font-size: 15px; color: var(--cream-dim); margin-bottom: 10px; }
.sitemap-col a:hover { color: var(--cream); }
@media (max-width: 640px) { .sitemap-grid { grid-template-columns: 1fr; } }
