/* ============================================================
   Pioneer Village — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Inter:wght@700&family=DM+Sans:wght@700&display=swap');

/* ---- Variables ---- */
:root {
  --forest:     #1e2d1a;
  --forest-mid: #2e4228;
  --sage:       #4a6741;
  --cream:      #f5f0e8;
  --stone:      #e8e0d0;
  --warm-white: #faf8f4;
  --gold:       #b8924a;
  --gold-light: #d4a95c;
  --text:       #1a1a16;
  --text-mid:   #4a4a3e;
  --text-light: #7a7a6e;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* ---- WordPress wrapper reset ---- */
/* Blank Canvas (and WordPress core) nest content inside multiple divs that
   carry max-width, padding, and float constraints. Force them all out of the way. */
html {
  margin-top: 0 !important; /* overrides the 32px admin-bar offset WP injects */
}
#page, .site, #content, .site-content,
#primary, .content-area, .site-main,
#main, article, .entry-content, .entry-wrap, .hentry,
#wrapper, .col-full, .container, .wp-block-group__inner-container {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  float: none !important;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(30, 45, 26, 0.97);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  backdrop-filter: blur(6px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold-light);
}

.nav-book-btn {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 3px;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}

.nav-book-btn:hover { background: var(--gold-light) !important; }
.nav-book-btn::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.25s;
}

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

/* ---- Section Shared ---- */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 32px 56px;
}

.section-intro-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.section-intro-ornament::before,
.section-intro-ornament::after {
  content: '';
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.section-intro-ornament span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
}

.section-intro-lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.4vw, 24px);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 18px;
}

.section-intro-body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.section-intro-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--stone);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 11px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-outline-dark:hover {
  background: var(--forest);
  color: #fff;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Hero (Full Page) ---- */
.hero {
  position: relative;
  height: 95vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,18,8,0.40) 0%,
    rgba(10,18,8,0.52) 40%,
    rgba(10,18,8,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero h1 {
  font-size: clamp(42px, 7vw, 80px);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 6px rgba(0,0,0,0.4);
}

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

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(245,240,232,0.95);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}

/* ---- Page Hero (60vh) ---- */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,18,8,0.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}

.page-hero-content h1 {
  font-size: clamp(34px, 6vw, 62px);
  color: #fff;
  margin: 12px 0 16px;
}

.page-hero-content p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(245,240,232,0.88);
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--cream);
  padding: 48px 40px;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.trust-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.trust-item-sub {
  font-size: 13px;
  color: var(--text-light);
}

/* ---- Two-Column About ---- */
.about-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.about-badge-num {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.about-badge-label {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 24px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--sage);
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.75;
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 28px 0 36px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}

.amenity-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Cabin Preview Section ---- */
.cabins-preview {
  background: var(--cream);
  padding: 100px 40px;
}

.cabins-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.cabin-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.cabin-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cabin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}

.cabin-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cabin-card-body {
  padding: 24px;
}

.cabin-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(184,146,74,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.cabin-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 10px;
}

.cabin-card-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.cabin-card-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color 0.2s;
}

.cabin-card-link:hover { color: var(--sage); }

/* ---- Full Cabin Cards (Cabins Page) ---- */
.cabin-full-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.cabin-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
}

.cabin-full-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cabin-full-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cabin-full-card-body .btn {
  margin-top: auto;
}

.cabin-full-card-number {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
}

.cabin-full-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.cabin-beds {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cabin-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
  margin-bottom: 20px;
}

.cabin-features li {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
}

.cabin-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}

.cabin-card-renovation {
  background: var(--forest);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  text-align: center;
  padding: 32px;
}

.cabin-card-renovation-inner {
  color: rgba(255,255,255,0.7);
}

.cabin-card-renovation-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.cabin-card-renovation-inner p {
  font-size: 14px;
  line-height: 1.6;
}

.renovation-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---- Weekday Deals ---- */
.weekday-section {
  background: var(--forest);
  padding: 100px 40px;
}

.weekday-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.weekday-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  margin-bottom: 24px;
}

.weekday-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.weekday-text p {
  color: rgba(245,240,232,0.8);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.weekday-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.weekday-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 22px 20px;
  position: relative;
  transition: background 0.2s;
}

.weekday-card:hover { background: rgba(255,255,255,0.09); }

.weekday-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.weekday-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 6px;
}

.weekday-card p {
  font-size: 13px;
  color: rgba(245,240,232,0.65);
  line-height: 1.5;
}

/* ---- Gallery ---- */
.gallery-section {
  padding: 100px 40px;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 10px;
  margin-top: 48px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* ---- Reviews ---- */
.reviews-section {
  background: var(--cream);
  padding: 100px 40px;
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.review-card {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.review-source {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,18,8,0.62);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
}

.cta-banner-content h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-banner-content p {
  font-size: 17px;
  color: rgba(245,240,232,0.88);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ---- Contact Strip ---- */
.contact-strip {
  background: var(--cream);
  padding: 100px 40px;
}

.contact-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--text);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}

.contact-details li a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details li a:hover { color: var(--sage); }

.contact-map {
  width: 100%;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--stone);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Footer ---- */
.footer {
  background: var(--forest);
  padding: 80px 40px 0;
  color: rgba(245,240,232,0.75);
  font-size: 14px;
  line-height: 1.7;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(245,240,232,0.65);
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.7);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-fb-link:hover { color: var(--gold-light); }

.footer-fb-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}

.footer-fb-link:hover .footer-fb-icon { background: rgba(255,255,255,0.18); }

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-col ul a {
  color: rgba(245,240,232,0.65);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(245,240,232,0.4);
}

/* ---- Attractions Page ---- */
.attractions-intro {
  background: var(--cream);
}

.attraction-section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.attraction-section.bg-white {
  max-width: 100%;
  background: var(--warm-white);
  padding: 80px 40px;
}

.attraction-section.bg-white .attraction-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.attraction-section h2 {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--text);
  margin-bottom: 48px;
  text-align: center;
}

.attraction-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.attraction-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.attraction-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 4px;
}

.attraction-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.attraction-item p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}

.attraction-distance {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* Events */
.events-section {
  background: var(--cream);
  padding: 80px 40px;
}

.events-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.events-section h2 {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--text);
  margin-bottom: 12px;
  text-align: center;
}

.events-subtext {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 48px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.event-icon { font-size: 26px; margin-bottom: 12px; }

.event-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.event-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
}

.event-when {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* Dining */
.dining-section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.dining-section h2 {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--text);
  margin-bottom: 16px;
}

.dining-section > p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.dining-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dining-box {
  background: var(--cream);
  border-radius: 6px;
  padding: 28px 22px;
  border: 1px solid var(--stone);
}

.dining-box-icon { font-size: 26px; margin-bottom: 12px; }

.dining-box h4 {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.dining-box p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ---- About Page ---- */
.about-page-section {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-page-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  margin-bottom: 24px;
}

.about-page-section p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-page-section img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

/* Stats */
.stats-section {
  background: var(--cream);
  padding: 80px 40px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-card {
  padding: 40px 20px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Groups section */
.groups-section {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  border-bottom: 4px solid var(--forest);
  padding: 100px 40px;
  text-align: center;
}

.groups-section-inner {
  max-width: 680px;
  margin: 0 auto;
}

.groups-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 24px;
}

.groups-section p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
}

.groups-contact-options {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.groups-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(245,240,232,0.85);
}

.groups-contact-item a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.groups-contact-item a:hover { color: #fff; }

/* ---- FAQ Accordion ---- */
.faq-section {
  background: var(--cream);
  padding: 100px 40px;
}

.faq-section-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-section .section-header {
  margin-bottom: 48px;
}

.faq-section .section-header p {
  font-size: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-question.open { color: var(--gold); }

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.faq-question.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 18px;
}

.faq-answer-inner {
  padding: 0 24px 4px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  border-left: 4px solid var(--gold);
  margin-left: 24px;
  padding-left: 20px;
}

/* ---- What's Local intro band ---- */
.local-intro-band {
  background: var(--forest-mid);
  padding: 64px 40px;
}
.local-intro-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.local-intro-item { text-align: center; }
.local-intro-icon { font-size: 36px; margin-bottom: 16px; }
.local-intro-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 10px;
}
.local-intro-item p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

/* ---- Cabin booking platform buttons ---- */
.booking-buttons {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.booking-buttons .btn {
  flex: 1;
  text-align: center;
  font-size: 13px;
  padding: 10px 8px;
}
.btn-vrbo {
  display: inline-block;
  background: #1A56DB;
  color: #fff;
  border: 2px solid #1A56DB;
  border-radius: 4px;
  font-family: 'Inter', 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 12px 16px;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-vrbo:hover { background: #1445b8; border-color: #1445b8; color: #fff; }
.btn-airbnb {
  display: inline-block;
  background: #FF5A5F;
  color: #fff;
  border: 2px solid #FF5A5F;
  border-radius: 4px;
  font-family: 'DM Sans', 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 12px 16px;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-airbnb:hover { background: #e04850; border-color: #e04850; color: #fff; }

/* ---- What's Local grid modifiers ---- */
.events-grid--4col { grid-template-columns: repeat(4, 1fr) !important; }
.events-grid--centered {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
}
.events-grid--centered .event-card {
  flex: 0 0 calc(33.33% - 16px);
  max-width: calc(33.33% - 16px);
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ---- Test Marker ---- */

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .about-section { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 580px; }
  .weekday-inner { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-page-section { grid-template-columns: 1fr; gap: 48px; }
  .about-page-section img { height: 380px; }
  .attraction-items { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(30,45,26,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 32px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .nav-book-btn { padding: 12px 0 !important; width: 100%; text-align: center; display: block !important; }

  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cabin-cards-grid { grid-template-columns: 1fr; }
  .cabins-page-grid { grid-template-columns: 1fr !important; }
  .reviews-grid { grid-template-columns: 1fr; }
  .weekday-cards { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item-large { grid-column: 1 / -1; grid-row: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-section,
  .about-page-section { padding: 60px 20px; }
  .cabins-preview { padding: 60px 20px; }
  .weekday-section,
  .reviews-section,
  .gallery-section { padding: 60px 20px; }
  .faq-section,
  .groups-section,
  .stats-section,
  .contact-strip { padding: 60px 20px; }
  .attraction-section,
  .events-section,
  .dining-section { padding: 60px 20px; }
  .footer { padding: 60px 20px 0; }
  .trust-bar { padding: 36px 20px; }
  .events-grid { grid-template-columns: 1fr; }
  .dining-boxes { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
}

@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
  .hero h1 { font-size: 32px; }
}
