/* ============================================================
   GOVYSTAY.COM — Global Stylesheet
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --cream:       #EDE9E0;
  --cream-dark:  #E0DBD0;
  --green-deep:  #2C4A2E;
  --green-mid:   #3D6B40;
  --green-light: #5A8F5E;
  --warm-white:  #F7F4EF;
  --charcoal:    #2A2A25;
  --tan:         #B8A882;
  --tan-light:   #D4C9B0;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 90px;
  background: rgba(237, 233, 224, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--tan-light);
}

#site-nav .nav-logo img {
  height: 68px;
  width: auto;
  display: block;
}

#site-nav ul.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#site-nav ul.nav-links li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

#site-nav ul.nav-links a {
  text-decoration: none;
  color: var(--green-deep);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

#site-nav ul.nav-links a:hover { color: var(--green-light); }

#site-nav ul.nav-links a.nav-active {
  color: var(--green-deep);
  border-bottom: 2px solid var(--green-deep);
  padding-bottom: 2px;
}

#site-nav ul.nav-links a.nav-book {
  background: var(--green-deep);
  color: var(--warm-white);
  padding: 10px 22px;
  letter-spacing: 2px;
  transition: background 0.2s, color 0.2s;
}

#site-nav ul.nav-links a.nav-book:hover {
  background: var(--green-mid);
  color: var(--warm-white);
}

/* ── STICKY BOOK BAR ── */
.sticky-book {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}

.sticky-book.visible { transform: translateY(0); }

.sticky-book-text {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan-light);
}

.sticky-book-rating {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: rgba(237,233,224,0.6);
  margin-left: 16px;
}

.sticky-book-ctas {
  display: flex;
  gap: 12px;
}

.sticky-book-ctas a {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.sticky-book-ctas .sticky-btn-primary {
  background: var(--tan-light);
  color: var(--green-deep);
}

.sticky-book-ctas .sticky-btn-primary:hover {
  background: var(--warm-white);
}

.sticky-book-ctas .sticky-btn-secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--tan-light);
}

.sticky-book-ctas .sticky-btn-secondary:hover {
  border-color: var(--tan-light);
  color: var(--warm-white);
}

@media (max-width: 900px) {
  .sticky-book { padding: 12px 24px; }
  .sticky-book-text span.sticky-book-rating { display: none; }
}

@media (max-width: 540px) {
  .sticky-book-text { display: none; }
  .sticky-book { justify-content: center; }
  .sticky-book-ctas a { padding: 10px 16px; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.72) saturate(1.1);
}

.hero-img { display: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 74, 46, 0.15) 0%,
    rgba(20, 35, 20, 0.3) 50%,
    rgba(20, 35, 20, 0.65) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 64px 72px;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 900;
  color: var(--warm-white);
  line-height: 1.05;
  max-width: 760px;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--tan-light);
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(247, 244, 239, 0.88);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247,244,239,0.6);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(247,244,239,0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green-deep);
  color: var(--warm-white);
  text-decoration: none;
  padding: 16px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  border: 1.5px solid rgba(247,244,239,0.7);
  color: var(--warm-white);
  text-decoration: none;
  padding: 16px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
}

.btn-secondary:hover {
  background: rgba(247,244,239,0.1);
  border-color: var(--warm-white);
}

.btn-green {
  display: inline-block;
  background: var(--green-deep);
  color: var(--warm-white);
  text-decoration: none;
  padding: 18px 40px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}

.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  text-decoration: none;
  padding: 18px 40px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--green-deep);
  color: var(--warm-white);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--green-deep);
  display: flex;
  justify-content: center;
}

.stat {
  padding: 28px 52px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--tan-light);
  display: block;
}

.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(237,233,224,0.6);
  margin-top: 4px;
  display: block;
}

/* ── SECTION BASE ── */
section { padding: 96px 64px; }

.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-body {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  line-height: 1.8;
  color: #4A4A40;
  max-width: 640px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--tan);
  margin: 24px 0;
}

/* ── LOCATION SECTION ── */
.location-section {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.location-text {
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.location-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── WALKABILITY ── */
.walkability-section {
  background: var(--warm-white);
  padding: 72px 64px;
}

.walk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--tan-light);
}

.walk-item {
  background: var(--warm-white);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
}

.walk-item:hover { background: var(--cream); }

.walk-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.walk-name {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.5px;
  display: block;
}

.walk-time {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: var(--green-light);
  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  margin-top: 3px;
}

/* ── HIGHLIGHTS ── */
.highlights-section {
  background: var(--cream);
  text-align: center;
}

.highlights-section .section-title,
.highlights-section .section-eyebrow { text-align: center; }

.highlights-section .divider { margin: 24px auto; }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.highlight-card.wide { grid-column: span 2; }

.highlight-card {
  background: var(--warm-white);
  padding: 48px 36px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.highlight-card:hover {
  border-color: var(--green-deep);
  transform: translateY(-4px);
}

.highlight-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 20px;
}

.highlight-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.highlight-text {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #5A5A50;
  font-weight: 300;
}

/* ── REVIEWS ── */
.reviews-section {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
}

.reviews-section .section-eyebrow { color: var(--tan-light); }
.reviews-section .section-title   { color: var(--warm-white); }
.reviews-section .divider         { background: var(--tan); margin: 24px auto; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.08);
}

.review-card {
  background: rgba(44, 74, 46, 0.6);
  padding: 40px 36px;
  text-align: left;
}

.review-stars {
  color: var(--tan-light);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-text {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(237,233,224,0.9);
  margin-bottom: 20px;
}

.review-author {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan-light);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 32px;
  margin-top: 48px;
}

.rating-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--tan-light);
}

.rating-stars { color: var(--tan-light); font-size: 16px; letter-spacing: 2px; }

.rating-count {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: rgba(237,233,224,0.6);
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ── SEASONS ── */
.seasons-section {
  background: var(--cream-dark);
  padding: 96px 64px;
}

.seasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 64px;
}

.season-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.season-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 160px;
  opacity: 0.06;
}

.season-winter { background: linear-gradient(135deg, #2C4A2E 0%, #1a2e1b 100%); }
.season-summer { background: linear-gradient(135deg, #3D6B40 0%, #2C4A2E 100%); }

.season-content {
  position: relative;
  z-index: 1;
  padding: 48px;
  color: var(--warm-white);
}

.season-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 12px;
}

.season-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.season-body {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247,244,239,0.82);
  margin-bottom: 28px;
  font-weight: 300;
}

.season-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.season-tag {
  border: 1px solid rgba(237,233,224,0.3);
  color: var(--tan-light);
  padding: 6px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── BOOK CTA ── */
.book-section {
  background: var(--cream);
  text-align: center;
}

.book-section .section-eyebrow,
.book-section .section-title,
.book-section .divider { margin-left: auto; margin-right: auto; }

.book-body {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  line-height: 1.8;
  color: #4A4A40;
  max-width: 560px;
  margin: 0 auto 48px;
}

.book-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.direct-note {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--green-light);
}

.direct-note a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(237,233,224,0.7);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  margin-top: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(237,233,224,0.65);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--tan-light); }

.footer-contact p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--tan-light);
  text-decoration: none;
}

.footer-bottom {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: rgba(237,233,224,0.35);
}

.footer-bottom a {
  color: rgba(237,233,224,0.35);
  text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  position: relative;
  padding: 140px 64px 80px;
  overflow: hidden;
  background: var(--green-deep);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.7);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .section-eyebrow { color: var(--tan-light); }
.page-hero .section-title   { color: var(--warm-white); }
.page-hero .section-body    { color: rgba(247,244,239,0.82); }
.page-hero .divider         { background: var(--tan); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 48px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.gallery-grid .gallery-wide {
  grid-column: span 2;
  height: 460px;
}

.gallery-grid img:hover { opacity: 0.88; }

/* ── BEDROOM CARDS ── */
.bedroom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: var(--tan-light);
}

.bedroom-card {
  background: var(--warm-white);
  padding: 40px 28px;
  text-align: center;
}

.bedroom-number {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  display: block;
  margin-bottom: 12px;
}

.bedroom-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}

.bedroom-type {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 8px;
}

.bedroom-note {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: var(--green-light);
  font-weight: 300;
  line-height: 1.5;
}

/* ── AMENITIES ── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--tan-light);
}

.amenity-item {
  background: var(--warm-white);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
}

.amenity-item:hover { background: var(--cream); }

.amenity-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.amenity-name {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  display: block;
  letter-spacing: 0.3px;
}

.amenity-detail {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #5A5A50;
  font-weight: 300;
  margin-top: 4px;
  display: block;
  line-height: 1.5;
}

/* ── RESTAURANT CARDS ── */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.restaurant-card {
  background: var(--warm-white);
  overflow: hidden;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.restaurant-card:hover {
  border-color: var(--green-deep);
  transform: translateY(-4px);
}

.restaurant-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.restaurant-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.restaurant-stars {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-deep);
}

.restaurant-price {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: #999;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.restaurant-header {
  background: var(--green-deep);
  padding: 22px 28px 20px;
}

.restaurant-walk {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan-light);
  display: block;
  margin-bottom: 10px;
}

.restaurant-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.1;
}

.restaurant-body {
  padding: 28px;
}

.restaurant-vibe {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  line-height: 1.8;
  color: #4A4A40;
  margin-bottom: 22px;
}

.restaurant-order {
  border-top: 1px solid var(--tan-light);
  padding-top: 18px;
}

.order-label {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  display: block;
  margin-bottom: 7px;
}

.order-item {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.5;
}

.restaurant-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.restaurant-links a {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  text-decoration: none;
  border: 1px solid var(--green-light);
  padding: 5px 10px;
  transition: background 0.2s, color 0.2s;
}

.restaurant-links a:hover {
  background: var(--green-deep);
  color: var(--warm-white);
  border-color: var(--green-deep);
}

/* ── MOUNTAIN CARDS ── */
.mountain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: var(--tan-light);
}

.mountain-card {
  background: var(--warm-white);
  overflow: hidden;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.mountain-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.mountain-card-body {
  padding: 36px 36px 32px;
}

.mountain-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.mountain-links a {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  text-decoration: none;
  border: 1px solid var(--green-light);
  padding: 5px 10px;
  transition: background 0.2s, color 0.2s;
}

.mountain-links a:hover {
  background: var(--green-deep);
  color: var(--warm-white);
  border-color: var(--green-deep);
}

.mountain-card:hover {
  border-color: var(--green-deep);
  transform: translateY(-4px);
}

.mountain-badge {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  display: block;
  margin-bottom: 12px;
}

.mountain-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
  line-height: 1.2;
}

.mountain-desc {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #5A5A50;
  font-weight: 300;
  margin-bottom: 22px;
}

.mountain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mountain-tag {
  background: var(--tan-light);
  color: var(--green-deep);
  padding: 4px 10px;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── TWO-COLUMN INFO SECTION ── */
.info-section {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.info-text {
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.info-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FAQ ── */
.faq-list {
  max-width: 820px;
  margin: 52px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--tan-light);
  padding: 36px 0;
}

.faq-item:first-child { border-top: 1px solid var(--tan-light); }

.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 14px;
  line-height: 1.3;
}

.faq-a {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  line-height: 1.85;
  color: #4A4A40;
}

.faq-a a {
  color: var(--green-deep);
  font-weight: 700;
  text-underline-offset: 3px;
}

/* ── USE CASE CARDS (groups page) ── */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: var(--tan-light);
}

.use-case-card {
  background: var(--cream);
  padding: 52px 44px;
}

.use-case-icon {
  font-size: 34px;
  display: block;
  margin-bottom: 20px;
}

.use-case-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.use-case-body {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #5A5A50;
  font-weight: 300;
}

/* ── WINTER PHOTO STRIP ── */
.winter-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 48px 0 56px;
}

.winter-photo-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.winter-photo-strip .strip-caption {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-top: 8px;
  display: block;
}

.snopark-link-card {
  background: var(--green-deep);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
}

.snopark-link-card p {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  color: var(--tan-light);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.snopark-link-card a {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--tan-light);
  padding: 12px 22px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.snopark-link-card a:hover {
  background: var(--warm-white);
}

/* ── SUMMER ACTIVITIES ── */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.activity-card {
  border-left: 3px solid var(--tan);
  padding-left: 24px;
}

.activity-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.activity-body {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #5A5A50;
  font-weight: 300;
}

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  transition: transform 0.25s ease, opacity 0.15s ease, transform 0.25s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #site-nav { padding: 0 24px; }

  .nav-toggle { display: flex; }

  #site-nav ul.nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--green-deep);
    padding: 12px 0 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    z-index: 99;
  }

  #site-nav ul.nav-links.open { display: flex; }

  #site-nav ul.nav-links li { width: 100%; display: block; }

  #site-nav ul.nav-links a {
    display: block;
    padding: 15px 32px;
    color: var(--warm-white) !important;
    font-size: 13px;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s;
    white-space: normal;
  }

  #site-nav ul.nav-links a:hover {
    color: var(--tan-light) !important;
    background: rgba(255,255,255,0.05);
  }

  #site-nav .nav-book {
    background: transparent !important;
    color: var(--tan-light) !important;
    padding: 15px 32px;
  }

  section { padding: 72px 32px; }

  .hero-content { padding: 0 32px 64px; }
  .hero-scroll  { display: none; }

  .location-section  { grid-template-columns: 1fr; }
  .location-image    { min-height: 340px; }

  .highlights-grid   { grid-template-columns: repeat(2, 1fr); }
  .highlight-card.wide { grid-column: span 2; }
  .reviews-grid      { grid-template-columns: 1fr; }
  .seasons-grid      { grid-template-columns: 1fr; }

  .stats-bar         { flex-wrap: wrap; }
  .stat              { padding: 20px 32px; }

  footer             { grid-template-columns: 1fr; gap: 36px; padding: 48px 32px; }
  .footer-bottom     { padding: 20px 32px; flex-direction: column; gap: 8px; text-align: center; }

  .walkability-section { padding: 72px 32px; }

  .page-hero { padding: 120px 32px 64px; }

  .gallery-grid { grid-template-columns: 1fr; gap: 6px; }
  .gallery-grid img { height: 240px; }
  .gallery-grid .gallery-wide { grid-column: span 1; height: 280px; }

  .bedroom-grid { grid-template-columns: repeat(2, 1fr); }

  .restaurant-grid { grid-template-columns: 1fr; gap: 24px; }
  .restaurant-img { height: 220px; }

  .mountain-grid { grid-template-columns: 1fr; }
  .mountain-img { height: 220px; }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .winter-photo-strip { grid-template-columns: 1fr; }
  .winter-photo-strip img { height: 220px; }
  .snopark-link-card { flex-direction: column; align-items: flex-start; }

  .info-section  { grid-template-columns: 1fr; }
  .info-image    { min-height: 320px; }
  .info-text     { padding: 64px 32px; }

  .use-case-grid { grid-template-columns: 1fr; }

  .faq-list { padding: 0 8px; }
}

@media (max-width: 540px) {
  .activity-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card.wide { grid-column: span 1; }
}
