:root {
  --pine: #1F3D2C;
  --linen: #EFE7D4;
  --brass: #A8884E;
  --rust: #B5562F;
  --ink: #181815;
  --mist: #C8C0AE;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }

h1, h2 {
  font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--pine);
  margin: 0;
}
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: 0.005em; }
h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; }

p { margin: 0; }

.topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--mist);
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pine);
}
.topbar a { color: var(--pine); text-decoration: none; }
.topbar a::before { content: "← "; color: var(--brass); }
.topbar .opt { color: var(--brass); font-style: italic; letter-spacing: 0.22em; }

.hero {
  text-align: center;
  padding: 72px 28px 48px;
  max-width: 880px; margin: 0 auto;
}
.kicker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.45;
  color: var(--pine);
  max-width: 640px;
  margin: 24px auto 0;
}

main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

/* Source artwork gallery */
.src-section {
  padding: 32px 0 64px;
  border-bottom: 1px solid var(--mist);
}
.source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.source-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--mist);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.source-card a {
  display: block;
  width: 100%;
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.source-card .art {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.source-card figcaption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pine);
  text-align: center;
  line-height: 1.4;
}

/* Logo options */
.opt-section {
  padding: 64px 0;
  border-top: 1px solid var(--mist);
}
.opt-section:first-of-type { border-top: none; }
.opt-header {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.opt-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.opt-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--pine);
  margin: 16px 0 0;
}

.opt-frame {
  padding: 56px 32px;
  border: 1px solid var(--mist);
  display: flex; align-items: center; justify-content: center;
}
.opt-frame.on-linen { background: var(--linen); }

/* Shared imagery treatment — multiply blend mode hides the white JPG/PNG backgrounds. */
.opt-frame .art {
  mix-blend-mode: multiply;
  /* faint tint toward pine green */
  filter: brightness(0.92) contrast(1.05);
}

.wordmark {
  font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--pine);
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0;
  line-height: 1;
}

/* Option A: Vertical Crest */
.logo-a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 520px;
}
.logo-a .ducks-top { width: 280px; height: auto; }
.logo-a .deer-body { width: 400px; height: auto; }
.logo-a .wordmark { font-size: clamp(38px, 5vw, 64px); }
.logo-a .turkey-foot { width: 96px; height: auto; }

/* Option B: Naturalist Plate */
.logo-b {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 56px;
  align-items: center;
  max-width: 980px;
  width: 100%;
}
.logo-b .deer-head { width: 100%; height: auto; }
.b-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.b-stack .ducks-row { width: 260px; height: auto; }
.b-stack .wordmark { font-size: clamp(34px, 4.4vw, 56px); }
.b-rule {
  width: 60%;
  height: 0;
  border-top: 1px solid var(--brass);
  position: relative;
}
.b-rule::before {
  content: "";
  position: absolute;
  left: 50%; top: -3.5px;
  width: 7px; height: 7px;
  background: var(--brass);
  transform: translateX(-50%) rotate(45deg);
}
.b-stack .turkey-foot { width: 70px; height: auto; }

@media (max-width: 760px) {
  .logo-b {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Option C: Wordmark Mark */
.logo-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 720px;
}
.logo-c .deer-head { width: 160px; height: auto; }
.logo-c .wordmark { font-size: clamp(40px, 6vw, 80px); }
.c-accents {
  display: flex; align-items: center;
  gap: 24px;
  margin-top: 6px;
}
.c-accents .ducks-side { width: 130px; height: auto; }
.c-accents .turkey-foot { width: 48px; height: auto; }
.c-rule {
  width: 1px;
  height: 36px;
  background: var(--brass);
}

/* Footer */
.footer {
  border-top: 1px solid var(--mist);
  padding: 40px 28px; text-align: center;
  font-family: 'Cormorant Garamond', serif;
  color: var(--pine);
  font-size: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.footer a { color: var(--brass); }
.footer .set {
  font-style: italic; font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass); margin: 14px 0 0;
}

@media (max-width: 560px) {
  .hero { padding: 48px 22px 32px; }
  main { padding: 0 22px 56px; }
  .opt-frame { padding: 28px 18px; }
  .logo-a .deer-body { width: 100%; }
  .logo-a .ducks-top { width: 80%; }
}
