/* Pheasant Directory — earth-tone, mobile-first */
:root {
  --bg: #f7f3eb;
  --bg-card: #fffdf8;
  --ink: #1f2a1c;
  --muted: #5c6b57;
  --accent: #6b4f2a;
  --accent-2: #8b5a2b;
  --leaf: #3d5c3a;
  --border: #d9cfc0;
  --header: #2a3428;
  --serif: "Source Serif 4", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --max: 720px;
  --wide: 1000px;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(31,42,28,.06), 0 8px 24px rgba(31,42,28,.06);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 400px at 10% -10%, #e8dfcc 0%, transparent 55%),
    radial-gradient(900px 300px at 100% 0%, #dfe8d8 0%, transparent 50%),
    var(--bg);
  line-height: 1.65;
  font-size: 1.05rem;
}
img { max-width: 100%; height: auto; }
a { color: var(--leaf); text-underline-offset: 2px; }
a:hover { color: var(--accent-2); }
.wrap { width: min(100% - 2rem, var(--wide)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.site-header {
  background: var(--header);
  color: #f4efe6;
  position: sticky; top: 0; z-index: 40;
  border-bottom: 3px solid var(--accent-2);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0; flex-wrap: wrap;
}
.brand {
  color: #f4efe6; text-decoration: none; font-weight: 700;
  letter-spacing: .02em; font-size: 1.05rem;
}
.brand span { color: #c9a66b; font-weight: 600; }
.nav { display: flex; gap: .25rem .9rem; flex-wrap: wrap; }
.nav a {
  color: #e7e1d4; text-decoration: none; font-size: .95rem;
  padding: .25rem .1rem; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: #fff; border-bottom-color: #c9a66b;
}

.hero {
  padding: 2.5rem 0 1.75rem;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.2; margin: 0 0 .75rem; color: var(--header);
}
.hero .lede { color: var(--muted); font-size: 1.12rem; max-width: 42rem; margin: 0; }
.eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: .5rem;
}

.grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 1.5rem 0;
}
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.15rem; box-shadow: var(--shadow);
}
.card h3 { font-family: var(--serif); margin: 0 0 .4rem; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); font-size: .98rem; }
.card a.card-link { text-decoration: none; color: inherit; display: block; }
.card a.card-link:hover h3 { color: var(--leaf); }

main { padding: 1.75rem 0 3rem; }
article h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.2; margin: 0 0 .75rem; color: var(--header);
}
article h2 {
  font-family: var(--serif); font-size: 1.45rem; margin: 2rem 0 .75rem;
  color: var(--header); border-bottom: 1px solid var(--border); padding-bottom: .35rem;
}
article h3 { font-size: 1.12rem; margin: 1.4rem 0 .5rem; color: var(--accent); }
article p, article ul, article ol { margin: 0 0 1rem; }
article ul, article ol { padding-left: 1.25rem; }
article li { margin: .25rem 0; }
.meta {
  color: var(--muted); font-size: .92rem; margin-bottom: 1.25rem;
}
.callout {
  background: #eef3e8; border-left: 4px solid var(--leaf);
  padding: .9rem 1rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.25rem 0; color: var(--ink);
}
.callout strong { color: var(--header); }
.sources {
  background: var(--bg-card); border: 1px dashed var(--border);
  padding: 1rem 1.1rem; border-radius: var(--radius); margin-top: 2rem;
}
.sources h2 { border: 0; margin-top: 0; font-size: 1.15rem; }
table {
  width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem;
  font-size: .95rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
th, td { text-align: left; padding: .65rem .75rem; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: #ebe4d6; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--header); }
tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; }
.table-wrap table { margin: 0; }

.site-footer {
  border-top: 1px solid var(--border); padding: 2rem 0 2.5rem;
  color: var(--muted); font-size: .92rem; background: #efe8dc;
}
.site-footer a { color: var(--accent); }
.disclaimer { max-width: 48rem; }

.btn {
  display: inline-block; background: var(--leaf); color: #fff !important;
  text-decoration: none; padding: .55rem 1rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
}
.btn:hover { background: #2f4a2d; }
.btn-secondary {
  background: transparent; color: var(--leaf) !important;
  border: 1px solid var(--leaf); margin-left: .4rem;
}
.btn-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }

.checklist li { margin: .45rem 0; }
.section-label { margin: 2rem 0 .75rem; font-family: var(--serif); color: var(--header); }

@media (max-width: 640px) {
  .site-header .bar { align-items: flex-start; }
  th, td { padding: .55rem .5rem; font-size: .9rem; }
}

/* Partner-ready featured gear cards */
.callout.featured-gear {
  border-left: 4px solid var(--accent-2);
  background: linear-gradient(180deg, #fffdf8 0%, #f3ebe0 100%);
}
.callout.featured-gear .partner-cta {
  display: inline-block;
  margin-top: .35rem;
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
}


/* Under construction — remove when JJ gives green light */
.uc-banner {
  background: #1a1a1a;
  color: #f5f0e6;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.65rem 0;
  text-align: center;
  border-bottom: 2px solid #c4a35a;
}
.uc-banner .wrap { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }


/* Lodge spotlight photos */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
}
@media (min-width: 640px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
}
.photo {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #2a3428;
}
.photo figcaption {
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}
