:root {
  --forest: #17291f;
  --pine: #244837;
  --sage: #6f845f;
  --cream: #fff8e8;
  --paper: #fffdf6;
  --linen: #f3e4c9;
  --gold: #c88f31;
  --clay: #9b5236;
  --wood: #674126;
  --ink: #231f1a;
  --muted: #6d6258;
  --line: #dfcfaa;
  --shadow: 0 18px 50px rgba(35, 31, 26, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18px 18px, rgba(103,65,38,.06) 1px, transparent 1px),
    linear-gradient(180deg, #fff8e8 0%, #f6ead6 42%, #fffdf6 100%);
  background-size: 34px 34px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.skip-link { position: absolute; left: -999px; top: 8px; background: #fff; padding: 10px; z-index: 50; }
.skip-link:focus { left: 8px; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 13px clamp(16px, 4vw, 60px);
  background: rgba(255, 248, 232, .96);
  border-bottom: 1px solid rgba(103,65,38,.18);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 240px; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; background: linear-gradient(135deg,var(--forest),var(--wood)); color: #fff; font-family: Georgia, serif; font-weight: 800; }
.brand strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; }
.brand small { color: var(--muted); font-size: .78rem; }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--paper); border-radius: 8px; padding: 9px 12px; }
.top-nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 4px; font-size: .9rem; }
.top-nav a { padding: 9px 10px; border-radius: 8px; color: #342a21; }
.top-nav a:hover, .top-nav a:focus { background: rgba(200,143,49,.14); outline: none; }
.hero {
  position: relative; overflow: hidden;
  min-height: 650px; display: grid; align-items: end;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 6vw, 78px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(14,27,20,.28), rgba(14,27,20,.9)),
    radial-gradient(circle at 76% 24%, rgba(200,143,49,.34), transparent 26%),
    linear-gradient(135deg, #16281f, #2f5a42 48%, #8a6431);
}
.hero::before {
  content: ""; position: absolute; inset: auto 0 0; height: 42%;
  background: linear-gradient(135deg, transparent 46%, rgba(255,248,232,.16) 47%, transparent 49%);
  opacity: .35; pointer-events: none;
}
.hero-content { position: relative; max-width: 970px; }
.eyebrow { margin: 0 0 10px; color: var(--gold); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.06; letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(2.8rem, 7vw, 5.8rem); max-width: 920px; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { margin: 0 0 9px; font-size: 1.35rem; }
p { line-height: 1.65; }
.hero p:not(.eyebrow) { max-width: 850px; font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,.92); }
.credibility { display: inline-flex; margin: 18px 0 24px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.12); font-size: .95rem; }
.button, button.button { border: 0; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 12px 17px; font-weight: 800; cursor: pointer; }
.primary { background: var(--gold); color: #20170d; }
.secondary { background: rgba(255,255,255,.13); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.dark { background: var(--forest); color: #fff; }
.ghost { border: 1px solid var(--line); color: var(--forest); background: var(--paper); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.section { padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 78px); }
.section.tight { padding-top: 34px; padding-bottom: 34px; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .8fr); gap: 26px; align-items: end; margin-bottom: 28px; }
.section-heading p { margin: 0; color: var(--muted); }
.band { background: var(--forest); color: #fff; }
.band .eyebrow { color: #f0bb62; }
.band p, .band li { color: rgba(255,255,255,.82); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .profile-panel, .form-card {
  background: rgba(255,253,246,.94); border: 1px solid rgba(103,65,38,.17);
  border-radius: 8px; padding: 22px; box-shadow: var(--shadow);
}
.card.subtle { box-shadow: none; background: rgba(255,253,246,.72); }
.card .meta, .meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.pill, .badge { display: inline-flex; align-items: center; min-height: 27px; padding: 5px 9px; border-radius: 999px; background: #f1e0bf; color: #3d2d1d; font-size: .78rem; font-weight: 800; }
.badge.sponsored { background: #f8d990; }
.badge.friend { background: #dceacb; }
.badge.soon { background: #e7ded3; }
.note { border-left: 4px solid var(--gold); padding: 14px 16px; background: rgba(200,143,49,.12); border-radius: 0 8px 8px 0; }
.planner { margin-top: -72px; position: relative; z-index: 5; }
.planner .form-card { max-width: 1180px; margin: 0 auto; }
.plan-grid { display: grid; grid-template-columns: repeat(5, minmax(145px, 1fr)); gap: 12px; }
label { display: grid; gap: 7px; color: var(--muted); font-weight: 800; font-size: .88rem; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; background: #fffdf8; padding: 12px; color: var(--ink); }
textarea { min-height: 110px; resize: vertical; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.result-note { color: var(--muted); font-size: .92rem; }
.directory-toolbar { display: grid; grid-template-columns: 2fr repeat(4, minmax(130px, 1fr)); gap: 10px; margin-bottom: 18px; }
.business-card { display: grid; gap: 10px; }
.image-slot {
  min-height: 170px; border-radius: 8px; overflow: hidden; display: grid; place-items: end start; padding: 16px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.46)),
    linear-gradient(135deg, #2d553f, #bf8c3b);
  color: #fff;
}
.image-slot.food { background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.5)), linear-gradient(135deg,#583321,#bf7c33); }
.image-slot.outdoor { background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.5)), linear-gradient(135deg,#173126,#6f845f); }
.image-slot.area { min-height: 220px; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.5)), linear-gradient(135deg,#244837,#c88f31); }
.image-slot span { font-weight: 900; text-shadow: 0 2px 10px rgba(0,0,0,.4); }
.quick-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 22px 0; }
.fact { padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: #fffdf8; }
.fact strong { display: block; font-size: .82rem; color: var(--muted); text-transform: uppercase; }
.split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 24px; align-items: start; }
.list-clean { padding-left: 18px; }
.list-clean li { margin: 8px 0; }
.footer { background: #121f18; color: #fff; padding: 44px clamp(18px, 6vw, 78px); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 2fr; gap: 26px; }
.footer a { color: rgba(255,255,255,.86); }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 10px; }
.disclosure { margin-top: 24px; color: rgba(255,255,255,.7); font-size: .9rem; max-width: 900px; }
.page-hero { padding: clamp(64px, 9vw, 110px) clamp(18px, 6vw, 78px); background: linear-gradient(135deg, var(--forest), #365d46 58%, #8b6938); color: #fff; }
.page-hero p { max-width: 800px; color: rgba(255,255,255,.88); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
.sticky-mobile-filter { display: none; }
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .top-nav { display: none; position: absolute; left: 12px; right: 12px; top: 70px; padding: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
  .top-nav.open { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading, .split, .footer-grid { grid-template-columns: 1fr; }
  .grid, .grid.two, .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-grid, .directory-toolbar, .quick-facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .site-header { align-items: flex-start; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .hero { min-height: 620px; }
  .grid, .grid.two, .grid.four, .plan-grid, .directory-toolbar, .quick-facts { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sticky-mobile-filter { display: block; position: sticky; bottom: 10px; z-index: 20; margin-top: 14px; }
}

