:root {
  --burgundy: #6b1e1e;
  --burgundy-dark: #421010;
  --ink: #2b211b;
  --tan: #e8d4a6;
  --paper: #f2e4c2;
  --paper-light: #f8efd9;
  --gold: #aa7b34;
  --shadow: rgba(31, 18, 10, .28);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.45), transparent 35%),
    repeating-linear-gradient(0deg, rgba(95,60,28,.025) 0, rgba(95,60,28,.025) 1px, transparent 1px, transparent 4px),
    #d8bd85;
  font-family: "Roboto Slab", Georgia, serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: #fff;
  padding: .7rem 1rem;
  border-radius: .25rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(55, 31, 18, .96);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 5px 18px rgba(0,0,0,.28);
}
.header-inner {
  max-width: var(--max);
  min-height: 82px;
  padding: .55rem 1.1rem;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.brand { width: 150px; flex: 0 0 auto; }
.brand img { border-radius: 3px; }
nav { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
nav a {
  color: #f8e9c5;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a:focus { color: #fff; border-bottom-color: var(--gold); }
.menu-toggle {
  display: none;
  margin-left: auto;
  color: #fff;
  border: 1px solid #d6ba7a;
  background: transparent;
  padding: .5rem .7rem;
  font: inherit;
}

.hero {
  min-height: 780px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 9px solid var(--burgundy-dark);
}
.hero-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to bottom, rgba(36,18,7,.22), rgba(36,18,7,.38)),
    radial-gradient(circle, transparent 42%, rgba(31,15,6,.58) 100%);
}
.parchment-panel {
  background:
    linear-gradient(rgba(248,239,217,.94), rgba(232,212,166,.95)),
    repeating-linear-gradient(90deg, transparent 0 4px, rgba(67,39,20,.025) 4px 5px);
  border: 3px double #5f3a20;
  outline: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 18px 45px rgba(0,0,0,.36), inset 0 0 30px rgba(96,53,21,.12);
}
.hero-copy {
  width: min(760px, calc(100% - 2rem));
  padding: 2.6rem 3rem;
  text-align: center;
}
.eyebrow {
  margin: 0 0 .5rem;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-weight: 800;
  font-size: .75rem;
}
h1, h2, h3 { margin-top: 0; line-height: 1.12; }
h1, h2 {
  font-family: "Rye", Georgia, serif;
  color: var(--burgundy);
  letter-spacing: .02em;
}
h1 { font-size: clamp(2.35rem, 6vw, 5.2rem); margin-bottom: 1rem; text-shadow: 1px 2px 0 #e7c98b; }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); margin-bottom: 1rem; }
h3 { color: var(--burgundy-dark); font-size: 1.45rem; }
.hero-tagline { max-width: 620px; margin: 0 auto .9rem; font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 600; }
.motto { color: var(--burgundy); font-weight: 800; font-size: 1.05rem; }
.button {
  display: inline-block;
  margin-top: .75rem;
  padding: .85rem 1.2rem;
  color: #fff8e6;
  background: var(--burgundy);
  border: 2px solid #421010;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15), 0 7px 15px rgba(0,0,0,.2);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.button:hover, .button:focus { background: #7d2929; transform: translateY(-1px); }
.button.secondary { background: #50311e; }

.section { padding: 6rem 1.1rem; }
.section-inner { width: min(var(--max), 100%); margin: auto; }
.section-intro { max-width: 730px; margin: -0.2rem auto 2.7rem; text-align: center; font-size: 1.1rem; }

.sheriff-welcome {
  background:
    linear-gradient(rgba(247,237,211,.96), rgba(235,216,172,.96)),
    url("assets/dry-creek-map.jpeg") center/cover;
  border-bottom: 1px solid rgba(78,43,18,.35);
}
.sheriff-grid { display: grid; grid-template-columns: minmax(230px, 340px) 1fr; gap: 4.5rem; align-items: center; }
.portrait-frame {
  padding: .8rem;
  background: #6a3b21;
  border: 4px double #2c160c;
  box-shadow: 0 15px 34px var(--shadow);
}
.portrait-frame img { width: 100%; max-height: 550px; object-fit: cover; object-position: top; filter: sepia(.1); }
.sheriff-copy blockquote {
  margin: 1.2rem 0 1.3rem;
  padding-left: 1.3rem;
  border-left: 4px solid var(--burgundy);
  font-size: 1.08rem;
}
.sheriff-authentication { display: flex; align-items: end; gap: 1.2rem; flex-wrap: wrap; }
.signature { width: min(320px, 64vw); mix-blend-mode: multiply; }
.seal { width: 112px; mix-blend-mode: multiply; }

.choose { background: #4a2a18; color: #f9edcf; text-align: center; }
.choose h2, .choose .eyebrow { color: #f2d59c; }
.choose .section-intro { color: #f7e8c7; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; text-align: left; }
.story-card {
  position: relative;
  min-height: 390px;
  padding: 2rem 1.7rem;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(145deg, #f7ebce, #dfc38b);
  border: 2px solid #b78a4b;
  box-shadow: 0 14px 30px rgba(0,0,0,.29), inset 0 0 24px rgba(72,38,15,.12);
}
.story-card::after {
  content: "";
  position: absolute;
  inset: .55rem;
  border: 1px solid rgba(91,46,23,.55);
  pointer-events: none;
}
.story-card.featured { transform: translateY(-12px); border-color: #f0ce82; }
.story-symbol { font-size: 2rem; color: var(--burgundy); }
.card-kicker { margin-bottom: .2rem; text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 800; color: #7b4a25; }
.story-card p { position: relative; z-index: 1; }
.text-link { position: relative; z-index: 1; color: var(--burgundy); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.explore { background: var(--paper-light); text-align: center; }
.destination-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; text-align: left; }
.destination {
  min-height: 255px;
  padding: 1.55rem;
  text-decoration: none;
  background: linear-gradient(145deg, #f7edd5, #e5cd9a);
  border: 1px solid #a77b43;
  box-shadow: 0 7px 18px rgba(68,38,17,.13);
  transition: transform .18s ease, box-shadow .18s ease;
}
.destination:hover, .destination:focus { transform: translateY(-5px); box-shadow: 0 14px 25px rgba(68,38,17,.2); }
.destination-icon { display: inline-grid; place-items: center; width: 42px; height: 42px; color: #fff1cf; background: var(--burgundy); border-radius: 50%; font-size: 1.3rem; }

.map-section { background: #d7b97c; text-align: center; }
.map-frame { padding: .9rem; background: #5d371f; border: 4px double #2f170b; box-shadow: 0 18px 38px var(--shadow); }
.map-frame img { width: 100%; }
.map-note { margin-bottom: 0; color: #5f3b21; font-weight: 700; }

.create-section {
  color: #f8eccd;
  background:
    linear-gradient(rgba(54,27,15,.94), rgba(54,27,15,.96)),
    url("assets/dry-creek-map.jpeg") center/cover fixed;
}
.create-section h2, .create-section .eyebrow { color: #f1cf8e; }
.create-grid { display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 3rem; }
.feature-pills { display: flex; gap: .6rem; flex-wrap: wrap; margin: 1.5rem 0; }
.feature-pills span { border: 1px solid #d4b16d; padding: .45rem .7rem; background: rgba(255,255,255,.06); }
.coming-label { color: #e6c683; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .78rem; }
.create-quote { color: var(--ink); padding: 2rem; text-align: center; font-size: 1.35rem; transform: rotate(1.5deg); }
.create-quote strong { display: block; color: var(--burgundy); font-family: "Rye", Georgia, serif; font-size: 1.65rem; }

.closing { background: var(--paper-light); }
.closing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.closing-grid > img { box-shadow: 0 14px 32px var(--shadow); border: 2px solid #8e6136; }

footer { padding: 3rem 1rem; color: #f5e4bd; background: #2d180e; border-top: 7px solid var(--burgundy); text-align: center; }
.footer-inner { width: min(760px, 100%); margin: auto; }
.footer-inner img { width: 230px; margin: 0 auto 1rem; }
.footer-title { margin-bottom: 0; font-family: "Rye", Georgia, serif; font-size: 1.4rem; }
.footer-motto { color: #e2c383; }
.copyright { font-size: .82rem; opacity: .78; }

@media (max-width: 1050px) {
  nav { gap: .65rem; }
  nav a { font-size: .76rem; }
}
@media (max-width: 850px) {
  .site-header { position: relative; }
  .header-inner { flex-wrap: wrap; }
  .menu-toggle { display: block; }
  nav { display: none; width: 100%; margin: .4rem 0 0; padding: .8rem 0; flex-direction: column; align-items: flex-start; border-top: 1px solid rgba(255,255,255,.2); }
  nav.open { display: flex; }
  nav a { font-size: .95rem; padding: .2rem 0; }
  .hero { min-height: 680px; }
  .hero-copy { padding: 2rem 1.25rem; }
  .sheriff-grid, .create-grid, .closing-grid { grid-template-columns: 1fr; }
  .portrait-frame { width: min(380px, 86vw); margin: auto; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card.featured { transform: none; }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .section { padding: 4.2rem .9rem; }
  .brand { width: 128px; }
  .hero { min-height: 620px; }
  .hero-map { object-position: 51% center; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 2rem; }
  .hero-tagline { font-size: 1.05rem; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination { min-height: 0; }
  .sheriff-authentication { align-items: center; }
  .seal { width: 86px; }
  .create-quote { transform: none; }
}
