/* Spofford Lake Rental — interior pages */

/* ── Page hero ──────────────────────────────────────────────────────────── */
.page-hero {
  position: relative; min-height: 36vh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center 40%;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,28,50,.78) 0%, rgba(10,28,50,.3) 100%);
}
.page-hero-content {
  position: relative; z-index: 1; color: var(--white);
  padding: 2.5rem 0 3rem;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.15; margin-bottom: .5rem;
}
.page-hero-content .hero-eyebrow { margin-bottom: .5rem; }
.page-hero-content .hero-sub { color: rgba(255,255,255,.8); font-size: 1rem; }

/* ── Jump nav ───────────────────────────────────────────────────────────── */
.jump-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky; top: var(--header-h); z-index: 90;
}
.jump-nav ul {
  display: flex; list-style: none; gap: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.jump-nav a {
  display: block; padding: .9rem 1.25rem;
  font-size: .82rem; font-weight: 600; color: var(--text-light);
  white-space: nowrap; border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.jump-nav a:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* ── Category headings ──────────────────────────────────────────────────── */
.cat-heading {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: 1.25rem; color: var(--primary-mid);
  margin: 2.5rem 0 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.cat-heading:first-of-type { margin-top: 0; }

/* ── Activity grid & cards ──────────────────────────────────────────────── */
.activity-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-bottom: 1rem;
}
.activity-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.section-blue .activity-card { background: var(--white); }
.activity-meta {
  font-weight: 700; color: var(--primary); font-size: .92rem;
  margin-bottom: .6rem; display: flex; align-items: baseline; gap: .5rem;
  flex-wrap: wrap;
}
.dist-badge {
  background: var(--accent); color: #1a2535;
  font-size: .68rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .15rem .5rem;
  border-radius: 3px; white-space: nowrap; flex-shrink: 0;
}
.activity-card p { color: var(--text-light); font-size: .9rem; line-height: 1.7; }

/* ── Dining grid & cards ────────────────────────────────────────────────── */
.dining-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.dining-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.dining-name { font-weight: 700; color: var(--primary); font-size: .97rem; margin-bottom: .2rem; }
.dining-type { font-size: .75rem; font-weight: 600; color: var(--accent-dark);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: .6rem; }
.dining-card p { color: var(--text-light); font-size: .88rem; line-height: 1.65; }

@media (max-width: 900px) {
  .activity-grid, .dining-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .activity-grid, .dining-grid { grid-template-columns: 1fr; }
  .jump-nav a { padding: .75rem 1rem; }
}

/* ── Large review cards ─────────────────────────────────────────────────── */
.reviews-grid-lg {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2rem;
}
.review-card-lg {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow);
  border: 1px solid var(--border); position: relative;
}
.review-card-lg::before {
  content: '\201C'; font-family: Georgia, serif;
  font-size: 5rem; line-height: .75; color: var(--accent);
  position: absolute; top: 1rem; left: 1.5rem; opacity: .5;
}
.review-card-lg .review-text {
  padding-top: 2rem; font-style: italic; color: var(--text-light);
  line-height: 1.78; margin-bottom: 1rem; font-size: .95rem;
}
.review-card-lg .review-stars { color: var(--accent); margin-bottom: .25rem; }
.review-card-lg .review-author { font-weight: 700; color: var(--primary); font-size: .88rem; }

/* ── Hero pull quote ────────────────────────────────────────────────────── */
.hero-pull {
  text-align: center; max-width: 760px; margin: 0 auto;
  border: none; padding: 0;
}
.hero-pull p {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--primary);
  line-height: 1.35; margin-bottom: .85rem;
}
.hero-pull cite {
  font-size: .88rem; color: var(--text-muted); font-style: normal;
}

/* ── Prose page (privacy policy) ────────────────────────────────────────── */
.prose-page { padding: 3.5rem 0 5rem; }
.prose-page h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--primary);
  margin-bottom: .4rem;
}
.prose-date { color: var(--text-muted); font-size: .85rem; margin-bottom: 2rem; }
.prose-page h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--primary);
  margin: 2rem 0 .6rem;
}
.prose-page p, .prose-page li {
  color: var(--text-light); line-height: 1.8; margin-bottom: .75rem;
  max-width: 720px;
}
.prose-page ul { padding-left: 1.5rem; margin-bottom: .75rem; }
.prose-page a { color: var(--primary-mid); }
.prose-page a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .reviews-grid-lg { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reviews-grid-lg { grid-template-columns: 1fr; }
}
