/* ============ SHARED DESIGN TOKENS ============ */
/* Used by index.html and every page under /blog/. Change once here — do not
   redeclare --ink, --wine, --gold, etc. locally in a page-specific stylesheet. */
:root {
  --ink: #241019;
  --ink-soft: #4a2a35;
  --paper: #f6efe4;
  --paper-2: #efe2ce;
  --wine: #5b1f33;
  --wine-strong: #431425;
  --wine-deep: #170a0f;
  --gold: #b08d57;
  --gold-soft: #d8c39c;
  --blush: #e7cfc3;
  --line: rgba(36, 16, 25, 0.14);
  --line-light: rgba(246, 239, 228, 0.28);
  --shadow: 0 30px 60px -20px rgba(23, 10, 15, 0.35);
  --serif:
    "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:
    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --container: 1180px;
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
html.lenis,
html.lenis body {
  height: auto;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
::selection {
  background: var(--gold-soft);
  color: var(--wine-deep);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-dark {
  color: var(--gold-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--gold);
  color: var(--wine-deep);
}
.btn-primary:hover {
  background: var(--gold-soft);
  box-shadow: 0 14px 30px -10px rgba(176, 141, 87, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-light);
}
.btn-ghost:hover {
  background: rgba(246, 239, 228, 0.08);
  border-color: var(--gold-soft);
}
.btn-outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--paper);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}

footer {
  background: var(--wine-deep);
  color: var(--blush);
  padding: 44px 0;
}
.foot-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}
.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.foot-links a {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.foot-links a:hover {
  opacity: 1;
}
