/* =============================================================
   Cedarwood — site styles
   Palette derived from the printed welcome guide:
     #fbf8f3 cream      #f5efe4 warm cream     #ffffff card
     #2a2724 ink        #4a4540 brown          #6a6055 muted
     #4a6b4a sage       #b86a4a terracotta     #e8dfce hairline
   Typography: Georgia for display, Helvetica/Arial for body.
   ============================================================= */

:root {
  --cream: #fbf8f3;
  --cream-warm: #f5efe4;
  --card: #ffffff;
  --ink: #2a2724;
  --ink-soft: #3a3530;
  --brown: #4a4540;
  --muted: #6a6055;
  --sage: #4a6b4a;
  --sage-deep: #3a5a3a;
  --terracotta: #b86a4a;
  --terracotta-deep: #9a5638;
  --hairline: #e8dfce;
  --hairline-stronger: #d8cfc0;

  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(42, 39, 36, .04);
  --shadow-md: 0 6px 18px rgba(42, 39, 36, .08);
  --max: 1180px;
  --max-narrow: 920px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--terracotta-deep); text-decoration: none; }
a:hover { color: var(--terracotta); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: normal;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--sage); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.4em; }
li { margin-bottom: .35em; }
strong { color: var(--ink); font-weight: 600; }
em { color: var(--sage); }
hr { border: 0; height: 1px; background: var(--hairline); margin: 2em 0; }

/* ---------------- LAYOUT ---------------- */

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.container-narrow { width: 100%; max-width: var(--max-narrow); margin: 0 auto; padding: 0 22px; }
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section-cream { background: var(--cream-warm); }

/* Eyebrow + section heading pattern from the guide */
.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 .5em;
}
.section-rule {
  width: 48px; height: 2px; background: var(--terracotta);
  border: 0; margin: 0 0 1.4em;
}
.section-rule.center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ---------------- HEADER / NAV ---------------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, .92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: .5px;
}
.nav-brand span {
  display: inline-block; color: var(--terracotta); margin-right: 2px;
}
.nav-brand:hover { text-decoration: none; color: var(--ink); }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover { color: var(--terracotta); text-decoration: none; }
.nav-links a.active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
.nav-toggle {
  display: none;
  border: 0; background: transparent; cursor: pointer;
  padding: 8px; color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 760px) {
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--hairline);
    padding: 6px 0 14px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; width: 100%;
    padding: 12px 22px;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-links a.active { border-bottom-color: var(--hairline); background: var(--cream-warm); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------------- HERO ---------------- */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fbf8f3;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 22px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(20,18,16,.45) 0%, rgba(20,18,16,.55) 60%, rgba(20,18,16,.7) 100%),
    url("../images/guide/cabin1.png") center/cover no-repeat;
}
.hero-eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #f0d8c4;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fbf8f3;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -1px;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 22px 0 18px;
  color: #f0d8c4;
}
.hero-divider::before, .hero-divider::after {
  content: ""; width: 60px; height: 1px; background: #f0d8c4;
}
.hero-subtitle {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #f0d8c4;
  margin: 0 0 14px;
}
.hero-location {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #cfe0c4;
}
.hero-cta {
  margin-top: 34px;
  display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* ---------------- BUTTONS ---------------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--terracotta); color: #fbf8f3; border-color: var(--terracotta); }
.btn-primary:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); color: #fbf8f3; }
.btn-secondary { background: transparent; color: #fbf8f3; border-color: #fbf8f3; }
.btn-secondary:hover { background: rgba(251, 248, 243, .12); color: #fbf8f3; }
.btn-ghost { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn-ghost:hover { background: var(--sage); color: var(--cream); }

/* ---------------- CARDS / GRIDS ---------------- */

.cards { display: grid; gap: 22px; }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .cards.cols-3, .cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cards.cols-2, .cards.cols-3, .cards.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card-hover:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card .card-img {
  width: 100%; aspect-ratio: 4 / 3;
  background: var(--cream-warm) center/cover no-repeat;
  display: block;
}
.card .card-body { padding: 18px 20px; }
.card .card-title {
  font-family: var(--serif); font-size: 1.2rem;
  margin: 0 0 6px; color: var(--ink);
}
.card .card-meta {
  font-size: .85rem; color: var(--muted);
  margin-bottom: 8px; line-height: 1.45;
}
.card .card-meta strong { color: var(--sage); font-weight: 600; }
.card .card-body p { font-size: .95rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ---------------- TAGS ---------------- */

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 10px; }
.tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--cream-warm);
  color: var(--brown);
}
.tag-family { background: #e0e8d0; color: #3a5a2a; }
.tag-adventure { background: #f0d8c4; color: #8a4a2a; }
.tag-rainy { background: #d4dde4; color: #2a4a5a; }
.tag-quick { background: #f5e4cc; color: #8a5a2a; }
.tag-hidden { background: #e8d4dc; color: #6a2a4a; }
.tag-adult { background: #d4c8b8; color: #4a3a2a; }
.tag-outdoor { background: #d6e3d0; color: #2f4a2a; }
.tag-romantic { background: #efd6dc; color: #7a2c4a; }
.tag-show { background: #ecd9c3; color: #7a4a1f; }
.tag-cozy { background: #ede4d2; color: #6b5a32; }

/* ---------------- INFO / WELCOME / INSTRUCTION CARDS ---------------- */

.welcome-card {
  background: var(--cream-warm);
  border-left: 4px solid var(--terracotta);
  padding: 28px 32px;
  border-radius: var(--radius);
  margin: 0 0 28px;
}
.welcome-card p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; line-height: 1.7;
  color: var(--brown);
  margin-bottom: .8em;
}
.welcome-card p:last-child { margin-bottom: 0; }

.info-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  padding: 22px 28px;
  border-radius: var(--radius);
  margin: 18px 0 22px;
}
.info-card h3 { margin: 0 0 .5em; }
.info-card ul { list-style: none; padding: 0; margin: 0; }
.info-card li {
  position: relative; padding-left: 22px;
  margin-bottom: 10px; line-height: 1.55;
}
.info-card li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--terracotta); border-radius: 50%;
}
.info-card ol { padding-left: 22px; }
.info-card ol li { padding-left: 4px; }
.info-card ol li::before { display: none; }

.instruction-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--sage);
  padding: 22px 28px;
  margin: 18px 0;
  border-radius: var(--radius);
}
.instruction-card h3 { margin-top: 0; color: var(--ink); }
.step-list {
  counter-reset: step; list-style: none; padding: 0; margin: 12px 0;
}
.step-list li {
  counter-increment: step;
  position: relative; padding: 4px 0 6px 46px;
  margin-bottom: 10px; line-height: 1.55;
  min-height: 32px;
}
.step-list li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px;
  background: var(--sage); color: var(--cream);
  border-radius: 50%; text-align: center;
  line-height: 30px; font-family: var(--serif);
  font-weight: 700; font-size: 1rem;
}
.safety-note {
  background: var(--cream-warm);
  border-left: 3px solid var(--terracotta);
  padding: 14px 20px;
  margin: 14px 0;
  font-size: .94rem; line-height: 1.55;
  border-radius: var(--radius);
}
.safety-note strong:first-child {
  color: var(--terracotta); text-transform: uppercase;
  letter-spacing: .18em; font-size: .78rem;
  display: block; margin-bottom: 4px;
}
.safety-note ul { margin: 4px 0 0; padding-left: 1.2em; }

/* ---------------- TABLES ---------------- */

.table-wrap { overflow-x: auto; margin: 14px 0 22px; -webkit-overflow-scrolling: touch; }
table {
  width: 100%; border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .95rem;
  min-width: 540px;
}
th {
  background: var(--sage); color: var(--cream);
  text-align: left; padding: 12px 16px;
  font-family: var(--sans);
  font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; font-size: .78rem;
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top; line-height: 1.55;
}
tr:last-child td { border-bottom: none; }

/* ---------------- FEATURE LIST (home) ---------------- */

.feature-list {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature {
  background: var(--card);
  border: 1px solid var(--hairline);
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-warm); color: var(--terracotta);
  border-radius: 50%;
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 12px;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* ---------------- ABOUT (home) — image + text rows ---------------- */

.split {
  display: grid; gap: 32px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
}
.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
}

/* ---------------- ACTIVITY PAGE FILTERS ---------------- */

.filters {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; }
.filter-row:last-child { margin-bottom: 0; }
.filter-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
  flex-shrink: 0;
}
.chip {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--hairline-stronger);
  background: var(--cream);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--terracotta); color: var(--terracotta); }
.chip.active {
  background: var(--terracotta); color: var(--cream);
  border-color: var(--terracotta);
}
.search-input {
  flex: 1; min-width: 200px;
  padding: 10px 14px;
  border: 1.5px solid var(--hairline-stronger);
  border-radius: var(--radius);
  font: inherit; font-size: .95rem;
  background: var(--cream);
  color: var(--ink);
}
.search-input:focus { outline: 2px solid var(--terracotta); border-color: var(--terracotta); }

.results-meta {
  font-size: .9rem; color: var(--muted);
  margin: 0 0 14px;
}
.no-results {
  background: var(--cream-warm);
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius);
  color: var(--muted);
  font-style: italic;
}

.category-anchor {
  scroll-margin-top: 80px;
}
.category-heading {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 8px;
  margin: 36px 0 18px;
}

/* Activity card variant */
.activity-card { display: flex; flex-direction: column; height: 100%; }
.activity-card .card-meta strong { color: var(--sage); }

/* ---------------- GALLERY ---------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-warm);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  border: 0; padding: 0;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .35s;
}

.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 18, 16, .92);
  display: none; align-items: center; justify-content: center;
  z-index: 100;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0,0,0,.6);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(251, 248, 243, .12);
  color: #fbf8f3;
  border: 1px solid rgba(251, 248, 243, .35);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(251, 248, 243, .25);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------------- RENTALS ---------------- */

.rental-card {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.rental-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0 0 4px;
}
.rental-tag {
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 14px;
}
.rental-desc { color: var(--ink-soft); margin: 0 0 20px; font-size: .98rem; }

/* ---------------- PAGE HEADER ---------------- */

.page-header {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--hairline);
  padding: 56px 0 44px;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--ink);
}
.page-header .eyebrow { margin-bottom: 14px; }
.page-header .lede {
  font-family: var(--serif); font-style: italic;
  color: var(--brown);
  max-width: 640px; margin: 14px auto 0;
  font-size: 1.05rem;
}

/* ---------------- PULL QUOTE ---------------- */

.pull-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--sage);
  text-align: center;
  margin: 36px 0;
  padding: 22px 28px;
  border-top: 1px solid var(--hairline-stronger);
  border-bottom: 1px solid var(--hairline-stronger);
}

/* ---------------- COZY LIST ---------------- */

.cozy-list {
  background: var(--cream-warm);
  padding: 26px 32px;
  border-radius: var(--radius);
  margin: 18px 0;
}
.cozy-list ul { list-style: none; padding: 0; margin: 0; }
.cozy-list li {
  padding-left: 28px; position: relative;
  margin-bottom: 10px; line-height: 1.55;
}
.cozy-list li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--terracotta); font-size: 1.05rem;
}

/* ---------------- SEASONS ---------------- */

.season {
  background: var(--card);
  border: 1px solid var(--hairline);
  padding: 24px 28px;
  margin-bottom: 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.season-header {
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.season-name {
  font-family: var(--serif);
  font-size: 1.9rem; color: var(--ink);
  margin-bottom: 4px;
}
.season-months {
  font-style: italic; color: var(--muted);
  font-size: 1rem;
}
.season-photo {
  width: 100%; aspect-ratio: 16/7;
  background: var(--cream-warm);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 12px 0;
}
.season-photo img { width: 100%; height: 100%; object-fit: cover; }
.pack-list {
  background: var(--cream-warm);
  padding: 12px 18px; margin: 8px 0 12px;
  font-size: .95rem; line-height: 1.55;
  border-radius: var(--radius);
}
.pack-list strong:first-child {
  display: block; color: var(--sage);
  text-transform: uppercase; letter-spacing: .18em;
  font-size: .78rem; margin-bottom: 4px;
}

/* ---------------- GUIDE-PAGE TOC ---------------- */

.toc {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin: 20px 0 36px;
  box-shadow: var(--shadow-sm);
}
.toc-title {
  font-size: .8rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--terracotta);
  font-weight: 700; margin-bottom: 12px;
}
.toc ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.toc li { margin: 0; }
.toc a {
  display: block; padding: 6px 0;
  color: var(--ink-soft);
  font-size: .95rem;
  border-bottom: 1px solid transparent;
}
.toc a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); text-decoration: none; }

/* ---------------- CTA STRIPE ---------------- */

.cta-stripe {
  background: var(--sage);
  color: var(--cream);
  padding: 44px 22px;
  text-align: center;
}
.cta-stripe h2 { color: var(--cream); margin-bottom: 10px; }
.cta-stripe p { color: #e6efde; margin-bottom: 18px; }
.cta-stripe .btn-primary { background: var(--terracotta); border-color: var(--terracotta); }

/* PDF download CTA */
.pdf-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--cream-warm);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin: 22px 0 28px;
}
.pdf-cta-text { flex: 1; }
.pdf-cta-text strong { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-bottom: 2px; }
.pdf-cta-text span { color: var(--brown); font-size: .94rem; }
@media (max-width: 580px) { .pdf-cta { flex-direction: column; align-items: flex-start; } }

/* ---------------- FOOTER ---------------- */

.site-footer {
  background: var(--ink);
  color: #cfc6b6;
  padding: 44px 22px 30px;
  text-align: center;
  margin-top: 60px;
}
.site-footer .brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #fbf8f3;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.site-footer .tag-line {
  font-style: italic; color: #b8af9d;
  font-size: .95rem; margin-bottom: 18px;
}
.site-footer nav {
  display: flex; flex-wrap: wrap; gap: 22px;
  justify-content: center;
  margin-bottom: 22px;
}
.site-footer nav a { color: #cfc6b6; font-size: .9rem; letter-spacing: .04em; }
.site-footer nav a:hover { color: var(--terracotta); }
.site-footer .copyright {
  font-size: .8rem; color: #8a8275;
  border-top: 1px solid #3a3530;
  padding-top: 18px;
  margin-top: 8px;
}

/* ---------------- UTIL ---------------- */

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.muted { color: var(--muted); }
.serif-italic { font-family: var(--serif); font-style: italic; color: var(--brown); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
