@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --green: #243b2a;
  --dark: #151714;
  --cream: #f5f0e5;
  --white: #fffdf8;
  --tan: #d6c5a5;
  --muted: #6d6a61;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--dark);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}
h1,h2,h3 { font-family: "Libre Baskerville", Georgia, serif; line-height: 1.2; }
a { color: inherit; }

.hero {
  min-height: 720px;
  background:
    linear-gradient(rgba(18,24,18,.66), rgba(18,24,18,.70)),
    radial-gradient(circle at 30% 25%, #60725b 0, #243b2a 45%, #11140f 100%);
  color: white;
  position: relative;
}
nav {
  max-width: 1150px;
  margin: auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 1.35rem;
}
.nav-link {
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.55);
  padding-bottom: 3px;
}
.hero-content {
  max-width: 900px;
  margin: 120px auto 0;
  padding: 0 24px 70px;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  margin: 0;
}
.tagline {
  font-size: 1.35rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 18px 0;
}
.intro {
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
  color: #f4f1e8;
}
.buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: 13px 22px;
  background: var(--tan);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  border-radius: 3px;
}
.button.secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,.65);
}

section { padding: 90px 24px; }
.welcome { max-width: 760px; margin: auto; text-align: center; }
.welcome h2, .cards-section h2, .season h2, .visit h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 18px; }
.welcome p:last-child { color: var(--muted); font-size: 1.08rem; }

.cards-section { background: var(--cream); text-align: center; }
.cards { max-width: 1050px; margin: 42px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.card { background: var(--white); padding: 28px; border: 1px solid #e4dccb; min-height: 220px; }
.icon { font-size: 2rem; }
.card h3 { margin: 14px 0 8px; font-size: 1.25rem; }
.card p { color: var(--muted); margin: 0; }

.season {
  max-width: 1050px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.season > div:first-child p:last-child { color: var(--muted); }
.season-box {
  background: var(--green);
  color: white;
  padding: 42px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.season-box strong { font-family: "Libre Baskerville", Georgia, serif; font-size: 1.7rem; }
.season-box span { margin-top: 10px; color: #e6e0d3; }

.visit { background: var(--dark); color: white; text-align: center; }
.address { font-size: 1.25rem; }
.small, .note { color: #c9c8c2; }
.note { margin-top: 28px; font-size: .9rem; }

footer {
  background: #0e0f0d;
  color: #bbb;
  text-align: center;
  padding: 30px 20px;
  font-size: .85rem;
}
footer .logo { color: white; margin-bottom: 8px; }

@media (max-width: 760px) {
  .hero { min-height: 650px; }
  .hero-content { margin-top: 80px; }
  .cards { grid-template-columns: 1fr; }
  .season { grid-template-columns: 1fr; }
  section { padding: 65px 20px; }
}
