@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-serif-4-600.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3-400.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-sans-3-600.woff2") format("woff2");
}

:root {
  --ink: #1C1917;
  --cream: #F4F1EA;
  --stone: #D6D0C4;
  --forest: #24352C;
  --brass: #7A5410;
  --body: #2A2622;
  --muted: #5C564F;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", system-ui, "Segoe UI", sans-serif;
  --wrap: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

.preview-banner {
  background: var(--forest);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.97);
  border-bottom: 2px solid var(--brass);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { text-decoration: none; min-width: 0; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.brand-place {
  display: block;
  margin-top: 3px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--brass);
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-desktop a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--body);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--ink);
  border-bottom-color: var(--brass);
}
.nav-phone {
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink) !important;
  border-bottom: none !important;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--stone);
  color: var(--ink);
  padding: 8px 12px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--stone);
  padding: 8px 28px 16px;
  background: var(--cream);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--stone);
  font-size: 1rem;
  color: var(--ink);
}
.nav-mobile a:last-child { border-bottom: none; }

/* Layout */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 72px 0; }
.section.tight { padding: 56px 0; }
.section.forest {
  background: var(--forest);
  color: var(--cream);
}
.section.stone { background: var(--stone); }
.section.ink { background: var(--ink); color: var(--cream); }

.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--brass);
  margin-bottom: 16px;
}
.section.forest .kicker,
.section.ink .kicker { color: #C4A35A; }
.section.forest .kicker::before,
.section.ink .kicker::before { background: #C4A35A; }

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

h1 {
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin-bottom: 18px;
}
h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 38em;
  margin-bottom: 16px;
}
p + p { margin-top: 14px; }
.muted { color: var(--muted); }
.section.forest .muted,
.section.ink .muted { color: rgba(244, 241, 234, 0.72); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn:hover { background: #2E2925; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.section.forest .btn,
.section.ink .btn {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.section.forest .btn:hover,
.section.ink .btn:hover { background: #fff; }
.section.forest .btn-ghost,
.section.ink .btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 241, 234, 0.55);
}
.section.forest .btn-ghost:hover,
.section.ink .btn-ghost:hover {
  background: rgba(244, 241, 234, 0.12);
  border-color: var(--cream);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}
.cta-phone {
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
}
.section.forest .cta-phone,
.section.ink .cta-phone {
  color: var(--cream);
  border-bottom-color: #C4A35A;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  min-height: 640px;
  border-bottom: 1px solid var(--stone);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 40px 64px 0;
  max-width: 720px;
  margin-left: auto;
  padding-left: 28px;
}
.hero-photo {
  position: relative;
  background: var(--ink);
  min-height: 420px;
  overflow: hidden;
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 38%;
  filter: saturate(0.78) contrast(1.05);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,0.15) 0%, rgba(28,25,23,0.55) 100%);
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  font-size: 0.78rem;
  color: rgba(244, 241, 234, 0.85);
  letter-spacing: 0.02em;
}

.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--stone);
}
.page-hero h1 { max-width: 18em; }
.page-hero .lede { margin-bottom: 0; }

/* Cards / grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--stone);
  padding: 28px 26px;
}
.section.stone .card { background: var(--cream); }
.card h3 { margin-top: 0; }
.card p { font-size: 0.98rem; }

.card-bullets {
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.card-bullets li {
  padding-left: 18px;
  position: relative;
  font-size: 0.98rem;
  color: var(--body);
  line-height: 1.45;
}
.card-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 2px;
  background: var(--brass);
}
.card .meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}

.story {
  border-top: 1px solid var(--stone);
  padding: 36px 0;
}
.story:first-of-type { border-top: none; padding-top: 0; }
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}
.story-photo {
  background: var(--stone);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
}
.story-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  border: 1px dashed #B8B0A4;
}
.story-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.issue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.issue-tags span {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  background: var(--stone);
  color: var(--body);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: start;
}

.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--stone);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--brass);
  line-height: 1;
  padding-top: 4px;
}
.step h3 { margin-bottom: 6px; }

.engage-box {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-left: 3px solid var(--brass);
  padding: 28px 26px;
}
.engage-box dl {
  display: grid;
  gap: 16px;
}
.engage-box dt {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.engage-box dd {
  font-size: 0.98rem;
  color: var(--body);
  margin: 0;
}
.engage-box .row { display: grid; gap: 4px; }

.buyers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin-top: 20px;
}
.buyers li {
  padding-left: 18px;
  position: relative;
  font-size: 1rem;
}
.buyers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 2px;
  background: var(--brass);
}

.contact-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  padding: 32px 28px;
}
.contact-card a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 8px;
  border-bottom: 1px solid transparent;
  width: fit-content;
}
.contact-card a:hover { border-bottom-color: var(--brass); }
.contact-card .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

.about-photo {
  background: var(--stone);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 360px;
  filter: saturate(0.85) contrast(1.02);
}
.photo-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 10px;
}

/* Footer */
.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.site-footer h3 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.site-footer a {
  color: rgba(244, 241, 234, 0.88);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-footer a:hover { border-bottom-color: #C4A35A; }
.site-footer p, .site-footer li {
  font-size: 0.92rem;
  color: rgba(244, 241, 234, 0.78);
  line-height: 1.55;
}
.site-footer ul { display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(244, 241, 234, 0.18);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(244, 241, 234, 0.55);
}

/* Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.rule {
  height: 1px;
  background: var(--stone);
  border: 0;
  margin: 40px 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    max-width: none;
    margin: 0;
    padding: 40px 28px 36px;
  }
  .hero-photo { min-height: 320px; }
  .grid-2, .grid-3, .split, .story-grid, .contact-block, .footer-grid, .buyers {
    grid-template-columns: 1fr;
  }
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-block; }
  .header-inner { padding: 14px 20px; }
  .section { padding: 56px 0; }
  .wrap { padding: 0 20px; }
}
