/* ============================================================
   Green Bay Retreat — global stylesheet
   Palette: north-woods lodge — forest green, cream, warm brass
   ============================================================ */

:root {
  --color-forest-900: #1a2e22;
  --color-forest-800: #223a2b;
  --color-forest-700: #2d4a37;
  --color-forest-600: #3d5f47;
  --color-cream-50: #faf7f0;
  --color-cream-100: #f3ede0;
  --color-cream-200: #e9dfc8;
  --color-brass-500: #b6893f;
  --color-brass-600: #96702f;
  --color-charcoal-900: #201d1a;
  --color-charcoal-700: #3a352f;
  --color-charcoal-500: #6b6459;
  --color-white: #ffffff;
  --color-star: #c99a3f;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1180px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(26, 46, 34, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 46, 34, 0.12);
  --shadow-lg: 0 20px 50px rgba(26, 46, 34, 0.18);
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-charcoal-900);
  background: var(--color-cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-forest-900);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--color-charcoal-700); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brass-600);
  font-weight: 600;
  margin-bottom: 0.75em;
}

.section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.section--alt {
  background: var(--color-cream-100);
}

.section--dark {
  background: var(--color-forest-900);
  color: var(--color-cream-50);
}
.section--dark h2, .section--dark h3 { color: var(--color-cream-50); }
.section--dark p { color: var(--color-cream-200); }
.section--dark .faq-question { color: var(--color-cream-50); }

.section-header {
  max-width: 640px;
  margin: 0 0 40px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--color-brass-500);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--color-brass-600); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  border-color: rgba(250, 247, 240, 0.4);
  color: inherit;
}
.btn--ghost:hover { background: rgba(250, 247, 240, 0.1); }

.btn--outline {
  background: transparent;
  border-color: var(--color-forest-700);
  color: var(--color-forest-800);
}
.btn--outline:hover { background: var(--color-forest-800); color: var(--color-cream-50); }

.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-cream-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-forest-900);
  letter-spacing: 0.01em;
}
.brand span { color: var(--color-brass-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-charcoal-700);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--color-brass-600); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    flex-direction: column;
    align-items: stretch;
    background: var(--color-cream-50);
    padding: 32px 24px;
    gap: 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    border-top: 1px solid var(--color-cream-200);
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-toggle { display: inline-flex; }
  .nav-links .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  color: var(--color-cream-50);
  background-color: var(--color-forest-900);
  background-image: linear-gradient(180deg, rgba(15,23,18,0.45) 0%, rgba(15,23,18,0.68) 45%, rgba(12,19,15,0.88) 100%), var(--hero-image, none);
  background-size: cover;
  background-position: center;
}
.hero h1 {
  color: var(--color-cream-50);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.hero p.lede, .hero .eyebrow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hero-content {
  padding: 64px 0 72px;
  max-width: 760px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.hero-badge {
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.12);
  border: 1px solid rgba(250, 247, 240, 0.28);
  backdrop-filter: blur(4px);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero p.lede {
  font-size: 1.15rem;
  color: var(--color-cream-100);
  max-width: 560px;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-cream-200);
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-cream-200);
}
.amenity-item:last-child { border-bottom: none; }
.amenity-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-brass-500);
  margin-top: 2px;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
.gallery a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  display: block;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.gallery a:hover img { transform: scale(1.06); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery .wide { grid-column: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 18, 0.94);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(250,247,240,0.12);
  border: 1px solid rgba(250,247,240,0.3);
  color: var(--color-cream-50);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250,247,240,0.12);
  border: 1px solid rgba(250,247,240,0.3);
  color: var(--color-cream-50);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}
.lightbox-nav--prev { left: 24px; }
.lightbox-nav--next { right: 24px; }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-cream-200);
}
.review-stars { color: var(--color-star); letter-spacing: 2px; margin-bottom: 10px; font-size: 1rem; }
.review-meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-forest-700);
  color: var(--color-cream-50);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.review-name { font-weight: 600; color: var(--color-forest-900); font-size: 0.92rem; }
.review-loc { font-size: 0.82rem; color: var(--color-charcoal-500); }

.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.rating-score {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-forest-900);
  line-height: 1;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-cream-200);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-forest-900);
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  transition: transform var(--transition);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-answer p { padding-bottom: 20px; margin: 0; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-forest-900);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-cream-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--color-white);
  color: var(--color-charcoal-900);
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-brass-500);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.form-success {
  display: none;
  padding: 20px;
  background: var(--color-forest-800);
  color: var(--color-cream-50);
  border-radius: var(--radius-sm);
}
.form-success.is-visible { display: block; }

/* ---------- Local guide list ---------- */
.poi-group { margin-bottom: 40px; }
.poi-list { list-style: none; margin: 0; padding: 0; }
.poi-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-cream-200);
}
.poi-list li:last-child { border-bottom: none; }
.poi-name { font-weight: 600; color: var(--color-forest-900); display: block; margin-bottom: 3px; }
.poi-desc { font-size: 0.94rem; color: var(--color-charcoal-700); margin: 0; }
.poi-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-brass-600);
  margin-left: 8px;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-brass-500);
}
.stat-label { font-size: 0.85rem; color: var(--color-cream-200); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-charcoal-900);
  color: var(--color-cream-100);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--color-cream-50); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-grid p { color: var(--color-cream-200); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--color-cream-200); transition: color var(--transition); }
.footer-grid a:hover { color: var(--color-brass-500); }
.footer-bottom {
  border-top: 1px solid rgba(250,247,240,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--color-charcoal-500);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--color-forest-900);
  color: var(--color-cream-50);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--color-cream-50); }
.page-hero p { color: var(--color-cream-200); max-width: 620px; }
.breadcrumb {
  font-size: 0.82rem;
  color: var(--color-cream-200);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--color-cream-200); opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.badge-dot::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-brass-500);
  margin-right: 8px;
}
