:root {
  --forest-950: #13261a;
  --forest-900: #1c3424;
  --forest-800: #274a31;
  --forest-700: #386841;
  --moss-500: #7f9b62;
  --moss-200: #dce6cf;
  --cream: #f6f2e8;
  --paper: #fffdf8;
  --gold: #c89842;
  --gold-light: #f1d99d;
  --ink: #243126;
  --muted: #5e6d60;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(20, 46, 28, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  margin-top: 0;
  color: var(--forest-950);
  font-family: "Libre Baskerville", serif;
  line-height: 1.2;
}
h1 { font-size: clamp(2.55rem, 7vw, 5.5rem); max-width: 930px; }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.15rem; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 1rem;
  z-index: 1000;
  padding: .7rem 1rem;
  background: var(--white);
  color: var(--forest-950);
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .8rem clamp(1rem, 5vw, 4.5rem);
  background: rgba(19, 38, 26, .97);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(12, 28, 18, .28);
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--white);
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  text-decoration: none;
}
.nav-links { display: flex; gap: .35rem; align-items: center; }
.nav-links a {
  padding: .55rem .75rem;
  border-radius: 999px;
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a:focus-visible { background: rgba(255,255,255,.13); }
.nav-toggle { display: none; }

.announcement {
  position: relative;
  z-index: 15;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem 1.25rem;
  padding: 1rem clamp(1rem, 5vw, 4.5rem);
  background: var(--gold-light);
  border-bottom: 1px solid rgba(82, 56, 12, .2);
  color: #4d390f;
  text-align: center;
}
.announcement strong { text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.announcement a {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: .15em;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 118px));
  display: flex;
  align-items: center;
  background: var(--forest-900) url("images/hero-valley.svg") center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 28, 18, .86) 0%, rgba(12, 28, 18, .58) 48%, rgba(12, 28, 18, .13) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: auto;
  padding: 6rem clamp(1.3rem, 6vw, 5rem);
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-content > p:not(.eyebrow) { max-width: 710px; font-size: clamp(1.1rem, 2vw, 1.4rem); }
.eyebrow {
  margin-bottom: .7rem;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--gold-light); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-block;
  padding: .85rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}
.button-primary { background: var(--gold); color: #1f250f; }
.button-primary:hover { background: #dfb65e; }
.button-secondary { border-color: rgba(255,255,255,.72); color: var(--white); }
.button-secondary:hover { background: rgba(255,255,255,.12); }

.section {
  width: min(1180px, calc(100% - 2.5rem));
  margin: auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
#about {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.section-christmas {
  padding-top: clamp(2rem, 4vw, 3rem);
}
#about,
#christmas,
#christmas-heading,
#season-details,
#visit,
#other,
#contact,
#home {
  scroll-margin-top: 5.5rem;
}
.section-heading { max-width: 760px; margin-bottom: 2.8rem; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered p { margin-left: auto; margin-right: auto; max-width: 720px; }
@media (min-width: 700px) {
  .heading-oneline { white-space: nowrap; }
}
.lead { font-size: 1.28rem; font-weight: 700; color: var(--forest-800); }
.two-column { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fact-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem;
  background: var(--cream);
  border: 1px solid #e5dece;
  border-radius: var(--radius);
}
.fact-card strong { color: var(--forest-800); font-family: "Libre Baskerville", serif; font-size: 1.5rem; }
.fact-card span { color: var(--muted); line-height: 1.45; }

.image-break {
  min-height: 430px;
  display: grid;
  place-items: end center;
  background-position: center;
  background-size: cover;
}
.image-break > div { width: 100%; padding: 5rem 1.5rem 2rem; text-align: center; background: linear-gradient(transparent, rgba(13, 30, 19, .85)); }
.image-break span { display: inline-block; max-width: 800px; color: var(--white); font-family: "Libre Baskerville", serif; font-size: clamp(1.25rem, 3vw, 2rem); }
.image-break-trees { background-image: url("images/christmas-field.svg"); }
.image-break-lake {
  background-image: url("images/autumn%20farm.png");
  background-position: center 25%; /* lower % = show more of the top */
}


.christmas-banner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.3rem);
  background: linear-gradient(135deg, #fff8e9 0%, #f2ead7 100%);
  border: 1px solid #eadbb7;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.christmas-banner-copy h3 { margin-bottom: .8rem; }
.christmas-banner-copy blockquote {
  margin: 0 0 1rem;
  color: var(--forest-800);
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.25rem, 2.8vw, 1.95rem);
  line-height: 1.35;
}
.christmas-banner-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}
.christmas-banner img {
  width: 100%;
  border-radius: 16px;
  background: #f7f1e2;
}

.card-grid { display: grid; gap: 1.25rem; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.fluid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
}
.card-grid.fluid > * {
  flex: 1 1 260px;
  max-width: min(100%, 340px);
}
.feature-card, .plain-card {
  background: var(--white);
  border: 1px solid #e3e8df;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card { padding: 1rem 1.4rem 1.5rem; text-align: center; }
.feature-card img { height: 210px; margin: auto; }
.feature-card p, .plain-card p { color: var(--muted); }
.plain-card { padding: 1.6rem; border-top: 5px solid var(--moss-500); }

.visit-panel {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--forest-900);
  border-radius: var(--radius);
  color: #e4eddf;
}
.visit-panel h3, .visit-panel h4 { color: var(--white); }
.season-facts {
  display: grid;
  gap: .85rem;
  margin: 1.5rem 0 0;
}
.season-facts > div {
  display: grid;
  grid-template-columns: minmax(7.5rem, 11rem) 1fr;
  gap: .35rem 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  align-items: start;
}
.season-facts > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.season-facts dt {
  grid-column: 1;
  margin: 0;
  color: var(--gold-light);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.season-facts dd {
  grid-column: 2;
  margin: 0;
  color: #e4eddf;
}
.checklist {
  width: fit-content;
  max-width: 100%;
  height: fit-content;
  justify-self: center;
  padding: 1.35rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
}
.checklist ul { padding-left: 1.2rem; margin-bottom: 0; }
.checklist li { max-width: 28rem; }

.stewardship {
  width: min(1180px, calc(100% - 2.5rem));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: var(--cream);
  border-radius: 28px;
  padding: clamp(2rem, 6vw, 4.5rem);
}
.stewardship img { filter: drop-shadow(0 12px 18px rgba(40, 60, 35, .13)); }

.contact { padding-bottom: 6rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.contact-card { padding: 1.6rem; background: var(--cream); border-radius: var(--radius); }
.contact-card.attention { border: 2px dashed #b6782d; background: #fff8e8; }
.contact-card address { margin-bottom: 1rem; font-style: normal; }
.text-link { color: var(--forest-700); font-weight: 900; }
.small { font-size: .9rem; line-height: 1.5; color: var(--muted); }

footer {
  padding: 3rem 1.5rem;
  background: var(--forest-950);
  color: #d9e4d6;
  text-align: center;
}
footer p { margin: .2rem 0; }
footer a { display: inline-block; margin-top: 1rem; color: var(--gold-light); font-weight: 700; }

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    padding: .55rem;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--white); }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 1rem 1rem;
    background: var(--forest-950);
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 8px; }
  .announcement { justify-content: flex-start; text-align: left; }
  .two-column, .visit-panel, .stewardship, .christmas-banner { grid-template-columns: 1fr; }
  .season-facts > div { grid-template-columns: 1fr; gap: .2rem; }
  .card-grid.four { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  body { font-size: 16px; }
  .brand span { font-size: .92rem; }
  .hero { min-height: 660px; }
  .hero-overlay { background: rgba(12, 28, 18, .68); }
  .fact-grid, .card-grid.three, .card-grid.four { grid-template-columns: 1fr; }
  .image-break { min-height: 350px; }
  .section { width: min(100% - 2rem, 1180px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
