/* =========================================================
   McIndoe Falls Inn — Redesigned Stylesheet
   Color palette derived from original site CSS:
     #78AD1F / #57830C / #459737 (greens)
     #4F0202 (burgundy)
     #85A687 / #97A694 (sage)
   Elevated for high-end B&B market
   ========================================================= */

/* ── Custom Properties ── */
:root {
  --green-deep:    #2B4A1E;
  --green-mid:     #3D6B29;
  --green-bright:  #4A7A32;
  --green-accent:  #78AD1F;
  --green-sage:    #85A687;
  --green-pale:    #EDF3E8;
  --green-wash:    #F3F7F0;
  --gold:          #C49A30;
  --gold-light:    #E2C96A;
  --gold-pale:     #F9F3E3;
  --burgundy:      #6B1A1A;
  --burgundy-light:#8B2020;
  --cream:         #F8F4EE;
  --cream-dark:    #EDE7DA;
  --white:         #FFFFFF;
  --text-dark:     #1A2818;
  --text-body:     #3A3A3A;
  --text-muted:    #6B7C6A;
  --border:        #C8D8C0;
  --border-light:  #DFE8D8;
  --shadow-sm:     0 2px 12px rgba(43,74,30,.10);
  --shadow-md:     0 6px 28px rgba(43,74,30,.14);
  --shadow-lg:     0 16px 56px rgba(43,74,30,.18);
  --radius:        4px;
  --radius-lg:     8px;
  --transition:    all .3s ease;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-script:   'Cormorant Garamond', Georgia, serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-bright); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1.0rem; line-height: 1.8; color: var(--text-body); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-sage);
}
.tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Layout Utilities ── */
.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
.container--narrow { max-width: 780px; }
.section { padding: 90px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 120px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }
.text-left  { text-align: left; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}
.btn-lg { padding: 17px 42px; font-size: .925rem; }

/* ── Decorative Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px auto;
  width: fit-content;
}
.divider::before,
.divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--green-sage);
}
.divider-leaf {
  width: 14px;
  height: 14px;
  background: var(--green-sage);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .tagline { margin-bottom: 0; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  background: var(--green-deep);
  box-shadow: var(--shadow-md);
}
.site-header.scrolled .nav-logo-text { color: var(--white); }
.site-header.scrolled .nav-link { color: rgba(255,255,255,.85); }
.site-header.scrolled .nav-link:hover { color: var(--gold-light); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  transition: padding .3s ease;
}
.site-header.scrolled .header-inner { padding: 14px 0; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  transition: color .3s;
}
.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.site-header.scrolled .nav-logo-sub { color: var(--green-sage); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--gold-light); text-shadow: none; }

.nav-book {
  margin-left: 16px;
  background: var(--gold);
  color: var(--white) !important;
  border: 2px solid var(--gold);
  padding: 9px 22px !important;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: none !important;
  transition: var(--transition);
}
.nav-book:hover {
  background: var(--green-deep) !important;
  border-color: var(--green-deep) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.nav-book::after { display: none !important; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-inn.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,40,24,.72) 0%,
    rgba(43,74,30,.55) 50%,
    rgba(20,30,18,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 860px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #f0d080;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-shadow: 0 1px 10px rgba(0,0,0,.8), 0 0 30px rgba(0,0,0,.5);
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #f0d080;
  box-shadow: 0 0 6px rgba(240,208,128,.6);
}
.hero h1 {
  color: var(--white);
  text-shadow: 0 3px 20px rgba(0,0,0,.5);
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 40px;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.92);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.9);
  animation: bounce 2s infinite;
}
.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.85);
  border-bottom: 2px solid rgba(255,255,255,.85);
  transform: rotate(45deg);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.8));
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   FEATURE BADGES STRIP
   ============================================================ */
.features-strip {
  background: var(--green-deep);
  padding: 32px 0;
}
.features-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.feature-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 36px;
  border-right: 1px solid rgba(255,255,255,.15);
  flex: 1;
  min-width: 180px;
  justify-content: center;
}
.feature-badge:last-child { border-right: none; }
.feature-badge-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold-light);
}
.feature-badge-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.feature-badge-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
}
.feature-badge-text span {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   WELCOME / INTRO
   ============================================================ */
.welcome {
  background: var(--cream);
  padding: 100px 0;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.welcome-text .eyebrow { margin-bottom: 16px; }
.welcome-text h2 { margin-bottom: 24px; }
.welcome-text p { margin-bottom: 20px; color: var(--text-body); }
.welcome-text p:last-of-type { margin-bottom: 32px; }
.welcome-image-wrap {
  position: relative;
}
.welcome-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.welcome-image-accent {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.welcome-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  padding: 12px;
}
.welcome-badge strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold-light);
}
.welcome-badge span {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ============================================================
   EXPERIENCE HIGHLIGHTS (3-COLUMN CARDS)
   ============================================================ */
.highlights {
  background: var(--green-pale);
  padding: 96px 0;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.highlight-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.highlight-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-card-body {
  padding: 28px;
}
.highlight-card-body .eyebrow { margin-bottom: 10px; }
.highlight-card-body h3 { margin-bottom: 14px; font-size: 1.35rem; }
.highlight-card-body p  { font-size: .9rem; line-height: 1.7; color: var(--text-muted); }
.highlight-card-body a  { display: inline-block; margin-top: 18px; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-mid); border-bottom: 1px solid var(--green-sage); padding-bottom: 2px; }
.highlight-card-body a:hover { color: var(--green-deep); border-color: var(--green-mid); }

/* ============================================================
   ROOMS PREVIEW
   ============================================================ */
.rooms-preview {
  background: var(--cream);
  padding: 100px 0;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .room-card-img { transform: scale(1.04); }
.room-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-card-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.room-card-body {
  padding: 24px;
}
.room-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.room-card-body p  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.room-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.room-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
}
.room-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--green-sage); fill: none; }
.rooms-preview-cta { text-align: center; }

/* ============================================================
   DINING / BREAKFAST
   ============================================================ */
.dining {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  padding: 100px 0;
}
.dining-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/garden-grounds.jpg');
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.dining-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.dining-text .eyebrow { color: var(--gold-light); margin-bottom: 16px; }
.dining-text h2 { color: var(--white); margin-bottom: 24px; }
.dining-text p  { color: rgba(255,255,255,.80); margin-bottom: 20px; }
.dining-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dining-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: .925rem;
}
.dining-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 10 8 14 16 6'/%3E%3C/svg%3E");
  background-size: contain;
}
.dining-image-stack {
  position: relative;
  padding: 20px 20px 20px 0;
}
.dining-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.dining-img-main-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dining-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid var(--green-deep);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   NORTHEAST KINGDOM
   ============================================================ */
.kingdom {
  background: var(--cream-dark);
  padding: 100px 0;
}
.kingdom-header { margin-bottom: 56px; }
.kingdom-header .eyebrow { margin-bottom: 12px; }
.kingdom-header h2 { margin-bottom: 16px; }
.kingdom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.kingdom-intro { font-size: 1.05rem; line-height: 1.8; margin-bottom: 32px; }
.kingdom-activities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.activity-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.activity-item:hover {
  border-color: var(--green-sage);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.activity-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.activity-item h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text-dark);
}
.activity-item p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.kingdom-image-col {
  position: relative;
}
.kingdom-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.kingdom-img-main-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kingdom-stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--green-mid);
}
.kingdom-stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green-mid);
  line-height: 1;
}
.kingdom-stat-card span {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   HISTORY SECTION
   ============================================================ */
.history {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}
.history::before {
  content: '"';
  position: absolute;
  top: 40px; left: 5%;
  font-family: var(--font-serif);
  font-size: 18rem;
  color: var(--green-pale);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.history-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.history-image-col {
  position: relative;
}
.history-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.history-img-main-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.history-plaque {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green-deep);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 180px;
}
.history-plaque strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.history-plaque span {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.history-text .eyebrow { margin-bottom: 16px; }
.history-text h2 { margin-bottom: 24px; }
.history-text p { margin-bottom: 18px; line-height: 1.8; }
.history-text blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--green-pale);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.history-text blockquote p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin: 0;
}
.history-text blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: .8rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--green-deep);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold), var(--green-mid));
}
.testimonials .section-header .eyebrow { color: var(--gold-light); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform .5s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}
.testimonial-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}
.star { color: var(--gold); font-size: 1.2rem; }
.testimonial-quote {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: .9rem;
}
.testimonial-meta {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.t-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
}
.t-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.t-dot.active { background: var(--gold); transform: scale(1.25); }
.tripadvisor-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding: 20px 32px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tripadvisor-badge span { color: rgba(255,255,255,.7); font-size: .85rem; }
.tripadvisor-score { font-weight: 700; color: var(--gold-light); font-size: 1.1rem; }

/* ============================================================
   BOOK CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--gold);
  padding: 72px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/vermont-fall.jpg') center / cover no-repeat;
  opacity: .55;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,74,30,.5), rgba(107,26,26,.35));
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner .tagline { color: rgba(255,255,255,.82); margin-bottom: 36px; }
.cta-season {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  align-items: flex-start;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; stroke: var(--green-sage); fill: none; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-season-block {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  padding: 16px;
  margin-top: 8px;
}
.footer-season-block .season-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 6px;
}
.footer-season-block strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,.5);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.social-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ============================================================
   IMAGE PLACEHOLDERS (replace with real photos)
   ============================================================ */
.ph-inn      { background: linear-gradient(135deg, #2B4A1E 0%, #4A7A32 100%); }
.ph-room1    { background: linear-gradient(135deg, #3D6B29 0%, #85A687 100%); }
.ph-room2    { background: linear-gradient(135deg, #57830C 0%, #8FA88A 100%); }
.ph-room3    { background: linear-gradient(135deg, #6B1A1A 0%, #85A687 100%); }
.ph-breakfast{ background: linear-gradient(135deg, #C49A30 0%, #2B4A1E 100%); }
.ph-vermont  { background: linear-gradient(135deg, #2B4A1E 0%, #C49A30 100%); }
.ph-exterior { background: linear-gradient(135deg, #3D6B29 0%, #2B4A1E 100%); }
.ph-text {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: #4a7535;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-inn.jpg');
  background-size: cover;
  background-position: center;
  opacity: .55;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-light); margin-bottom: 14px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .tagline { color: rgba(255,255,255,.75); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ============================================================
   RESPONSIVE — MULTI-DEVICE
   ============================================================ */

/* ── Slightly compressed nav: 1100px ── */
@media (max-width: 1100px) {
  .nav-link { font-size: .75rem; padding: 5px 9px; }
  .nav-book { padding: 8px 16px !important; }
}

/* ── Tablet landscape / small desktop: 1024px ── */
@media (max-width: 1024px) {
  /* Multi-column grids collapse to single */
  .grid-2,
  .welcome-grid,
  .dining-content,
  .history-inner,
  .kingdom-grid    { grid-template-columns: 1fr; gap: 48px; }

  /* Hide decorative overlap elements; keep main content */
  .welcome-image-accent,
  .welcome-badge      { display: none; }
  .dining-image-stack { display: none; }

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

  .kingdom-stat-card { position: static; margin-top: 24px; }
  .history-plaque { position: static; margin-top: 24px; display: inline-block; }
  .history-image-col { text-align: center; }

  /* Keep activities 2×2 on tablet */
  .kingdom-activities { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet portrait / large phone: 768px ── */
@media (max-width: 768px) {

  /* ─── Navigation ─── */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--green-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 2px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    max-height: 85vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open { display: flex; }

  .nav-link {
    padding: 13px 16px !important;
    min-height: 48px;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.88) !important;
    text-shadow: none !important;
    border-radius: var(--radius);
  }
  .nav-link::after { display: none !important; }
  .nav-link:hover  { background: rgba(255,255,255,.08); color: var(--gold-light) !important; }

  .nav-book {
    margin: 8px 0 0 !important;
    text-align: center !important;
    justify-content: center !important;
    min-height: 48px !important;
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }

  /* ─── Feature badges: 2×2 grid ─── */
  .features-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .feature-badge {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
    flex: unset;
    min-width: unset;
    width: 100%;
    padding: 16px 14px;
    justify-content: flex-start;
  }
  .feature-badge:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.15); }
  .feature-badge:nth-child(3),
  .feature-badge:nth-child(4)    { border-bottom: none; }

  /* ─── Layout grids ─── */
  .grid-3, .rooms-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ─── Hero: stacked layout on mobile ─── */
  .hero {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .hero-bg {
    position: relative;
    inset: auto;
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center center;
    transform: none !important;
    transition: none;
  }
  .hero-overlay {
    position: absolute;
    bottom: auto;
    height: calc(100vw * 0.667);
  }
  .hero-content {
    position: relative;
    z-index: 3;
    padding: 32px 20px 52px;
    background: linear-gradient(rgba(26,40,24,.97), rgba(43,74,30,.95));
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }

  /* ─── Welcome image: show on mobile, full width below text ─── */
  .welcome-image-wrap { display: block !important; }
  .welcome-image-main {
    aspect-ratio: 4/3;
    width: 100%;
    border-radius: var(--radius-lg);
    display: block !important;
  }

  /* ─── Kingdom ─── */
  .kingdom-activities { grid-template-columns: repeat(2, 1fr); }

  /* ─── Testimonials ─── */
  .tripadvisor-badge {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
    gap: 4px;
  }

  /* ─── CTA ─── */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
  .cta-season { font-size: .7rem; padding: 6px 14px; }

  /* ─── Footer ─── */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* ─── Sections ─── */
  .section    { padding: 60px 0; }
  .section--lg{ padding: 80px 0; }
  .section--sm{ padding: 40px 0; }

  /* ─── Page hero ─── */
  .page-hero { padding: 108px 0 56px; }

  /* ─── History decorative quote ─── */
  .history::before { font-size: 8rem; top: 20px; left: 2%; }
}

/* ── Small phones: 480px ── */
@media (max-width: 480px) {
  .container { width: 92%; }

  h1 { font-size: 1.95rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  .btn     { padding: 13px 22px; }
  .btn-lg  { padding: 14px 24px; font-size: .875rem; }

  /* ─── Feature badges: full single column ─── */
  .features-strip-inner { grid-template-columns: 1fr; }
  .feature-badge {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.15) !important;
    padding: 14px 20px;
    justify-content: flex-start;
  }
  .feature-badge:last-child { border-bottom: none !important; }

  /* ─── Kingdom activities: single column ─── */
  .kingdom-activities { grid-template-columns: 1fr; }

  /* ─── Grid-4 single column ─── */
  .grid-4 { grid-template-columns: 1fr; }

  /* ─── Hero ─── */
  .hero-content { padding: 28px 12px 44px; }
  .hero-eyebrow { font-size: .65rem; gap: 8px; }
  .hero-eyebrow::before,
  .hero-eyebrow::after { width: 20px; }

  /* ─── Page hero ─── */
  .page-hero { padding: 90px 0 40px; }

  /* ─── Sections ─── */
  .section    { padding: 44px 0; }
  .section--sm{ padding: 32px 0; }

  /* ─── History ─── */
  .history::before { display: none; }

  /* ─── Section headers ─── */
  .section-header { margin-bottom: 36px; }

  /* ─── CTA ─── */
  .cta-banner { padding: 56px 0; }
  .cta-season { font-size: .68rem; }

  /* ─── Room card meta wrap ─── */
  .room-card-meta { gap: 10px; }

  /* ─── Footer bottom ─── */
  .footer-bottom { font-size: .72rem; }

  /* ─── Rooms preview CTA ─── */
  .rooms-preview-cta .btn { width: 100%; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
