/* =========================================================================
   Smokies Chalet Escapes — Design System
   Palette: Pine, Moss, Bone, Copper, Charcoal, Smoke
   Type: Fraunces (display) + Manrope (body)
   ========================================================================= */

/* ----- Tokens ----------------------------------------------------------- */
:root {
  /* Color */
  --pine-900: #16201b;
  --pine: #1e2a24;
  --moss: #3b5344;
  --moss-600: #4a6553;
  --bone: #f5f2ea;
  --bone-50: #fbf9f4;
  --paper: #ece6da;
  --copper: #b07a4e;
  --copper-600: #9a6740;
  --copper-100: #e7d4c2;
  --charcoal: #211f1b;
  --ink: #2b2925;
  --stone: #7c776d;
  --smoke: #9aa6a4;
  --line: rgba(33, 31, 27, 0.12);
  --line-strong: rgba(33, 31, 27, 0.2);
  --line-light: rgba(245, 242, 234, 0.16);

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

  --step--1: clamp(0.8rem, 0.77rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.35rem + 0.75vw, 2.1rem);
  --step-3: clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --step-4: clamp(2.6rem, 2rem + 3vw, 4.5rem);
  --step-5: clamp(3.2rem, 2.2rem + 5vw, 6rem);

  /* Space */
  --sp-xs: 0.5rem;
  --sp-sm: 0.85rem;
  --sp-md: 1.4rem;
  --sp-lg: 2.4rem;
  --sp-xl: 4rem;
  --sp-2xl: 6.5rem;
  --sp-3xl: 9rem;

  --wrap: 1240px;
  --wrap-narrow: 820px;
  --radius: 4px;
  --radius-lg: 10px;
  --radius-xl: 20px;
  --shadow-soft: 0 22px 60px -30px rgba(22, 32, 27, 0.5);
  --shadow-card: 0 18px 44px -28px rgba(22, 32, 27, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ----- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--copper); outline-offset: 3px; border-radius: 2px; }

/* ----- Typography ------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--pine);
  font-optical-sizing: auto;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { text-wrap: pretty; }
strong { font-weight: 700; }

.display {
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 144;
  font-weight: 380;
}
.italic-note { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-600);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--copper);
  display: inline-block;
}
.eyebrow.center::before { display: none; }
.eyebrow.center { letter-spacing: 0.26em; }

.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink); font-weight: 400; }
.muted { color: var(--stone); }

/* ----- Layout ----------------------------------------------------------- */
.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.4rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--sp-2xl); }
.section-sm { padding-block: var(--sp-xl); }
.section-tight { padding-block: var(--sp-lg); }
.bg-pine { background: var(--pine); color: var(--bone); }
.bg-pine h1, .bg-pine h2, .bg-pine h3, .bg-pine h4 { color: var(--bone); }
.bg-paper { background: var(--paper); }
.bg-bone50 { background: var(--bone-50); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.stack > * + * { margin-top: var(--sp-md); }

.section-head { max-width: 640px; margin-bottom: var(--sp-xl); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 0.6rem; }
.section-head p { margin-top: var(--sp-sm); color: var(--stone); font-size: var(--step-1); }
.bg-pine .section-head p { color: rgba(245,242,234,0.72); }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.8em;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--copper); color: #fff; box-shadow: 0 12px 30px -14px rgba(176,122,78,0.9); }
.btn-primary:hover { background: var(--copper-600); }
.btn-dark { background: var(--pine); color: var(--bone); }
.btn-dark:hover { background: var(--pine-900); }
.btn-ghost { background: transparent; color: var(--pine); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--pine); background: rgba(30,42,36,0.04); }
.btn-ghost-light { background: transparent; color: var(--bone); border: 1px solid var(--line-light); }
.btn-ghost-light:hover { border-color: var(--bone); background: rgba(245,242,234,0.08); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1em 2.2em; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper-600);
}
.link-arrow svg { transition: transform 0.35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ----- Header / Nav ----------------------------------------------------- */
.logo{
  width: 200px;
  
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 100px;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); }
.site-header.is-solid {
  background: rgba(245, 242, 234, 0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; align-items: center; gap: 0.7rem; z-index: 2; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-text { line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--bone);
  transition: color 0.4s var(--ease);
  display: block;
}
.brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,242,234,0.65);
  transition: color 0.4s var(--ease);
}
.is-solid .brand-name { color: var(--pine); }
.is-solid .brand-tag { color: var(--stone); }
.brand-mark .glyph-stroke { stroke: var(--bone); transition: stroke 0.4s var(--ease); }
.brand-mark .glyph-fill { fill: var(--copper); }
.is-solid .brand-mark .glyph-stroke { stroke: var(--pine); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(245,242,234,0.9);
  transition: color 0.3s var(--ease);
  position: relative;
  padding-block: 0.4rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--copper);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.is-solid .nav-links a { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--copper-600); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em;
  color: var(--bone); display: inline-flex; align-items: center; gap: 0.45em;
  transition: color 0.3s var(--ease);
}
.is-solid .nav-phone { color: var(--pine); }
.nav-phone:hover { color: var(--copper); }

.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 2; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--bone); transition: 0.35s var(--ease); }
.is-solid .nav-toggle span { background: var(--pine); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.menu-open .nav-toggle span { background: var(--bone); }
body.menu-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ----- Mobile menu ------------------------------------------------------ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--pine);
  color: var(--bone);
  padding: calc(var(--header-h) + 2rem) 1.6rem 2rem;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a { color: var(--bone); }
.mobile-menu .m-links { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-menu .m-links a {
  font-family: var(--font-display);
  font-size: 2rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-light);
}
.mobile-menu .m-foot { margin-top: auto; padding-top: 2rem; display: grid; gap: 1rem; }
.mobile-menu .m-foot .btn { width: 100%; }

/* ----- Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--bone);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22,32,27,0.5) 0%, rgba(22,32,27,0.12) 32%, rgba(22,32,27,0.55) 78%, rgba(22,32,27,0.9) 100%),
    radial-gradient(120% 80% at 80% 8%, rgba(176,122,78,0.18), transparent 55%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 7vh, 6rem); padding-top: calc(var(--header-h) + 2rem); }
.hero h1 { color: var(--bone); font-size: var(--step-5); max-width: 15ch; font-variation-settings: "SOFT" 30, "opsz" 144; font-weight: 360; }
.hero .eyebrow { color: var(--copper-100); }
.hero .eyebrow::before { background: var(--copper-100); }
.hero-sub { max-width: 46ch; font-size: var(--step-1); color: rgba(245,242,234,0.9); margin-top: var(--sp-md); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: var(--sp-lg); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem;
  margin-top: var(--sp-xl); padding-top: var(--sp-md);
  border-top: 1px solid var(--line-light);
}
.hero-meta .stat-num { font-family: var(--font-display); font-size: var(--step-2); color: var(--bone); line-height: 1; }
.hero-meta .stat-label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,242,234,0.66); margin-top: 0.35rem; }
.scroll-hint {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 3; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(245,242,234,0.7); display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.scroll-hint .line { width: 1px; height: 40px; background: linear-gradient(var(--copper), transparent); animation: scrollpulse 2.4s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.4; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ----- Ridgeline signature ---------------------------------------------- */
.ridge { display: block; width: 100%; height: auto; }
.ridge-divider { position: relative; line-height: 0; }

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

.feature-card {
  background: var(--bone-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--copper-100); }
.feature-card .ic { width: 44px; height: 44px; color: var(--copper); margin-bottom: var(--sp-sm); }
.feature-card h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.feature-card p { color: var(--stone); font-size: var(--step-0); }

/* image tile */
.tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile-cap {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 1.4rem; color: var(--bone);
  background: linear-gradient(0deg, rgba(22,32,27,0.85), transparent);
}
.tile-cap h3 { color: var(--bone); font-size: var(--step-1); }
.tile-cap .k { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper-100); }

/* experience row */
.exp {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.6rem, 4vw, 4.5rem);
  align-items: center;
}
.exp.reverse .exp-media { order: 2; }
.exp-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; }
.exp-media img { width: 100%; height: 100%; object-fit: cover; }
.exp-body .idx { font-family: var(--font-display); font-size: var(--step-1); color: var(--copper); }

/* ----- Amenity list ----------------------------------------------------- */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 0.4rem 1.6rem; }
.amenity-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 0; border-bottom: 1px solid var(--line);
  font-size: var(--step-0);
}
.amenity-item svg { width: 20px; height: 20px; color: var(--copper); flex: none; }
.bg-pine .amenity-item { border-color: var(--line-light); }
.bg-pine .amenity-item svg { color: var(--copper-100); }

/* ----- Testimonials ----------------------------------------------------- */
.quote-card {
  background: var(--bone-50); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-lg);
  display: flex; flex-direction: column; gap: var(--sp-md); height: 100%;
}
.quote-card .stars { color: var(--copper); letter-spacing: 0.15em; font-size: 0.95rem; }
.quote-card blockquote { font-family: var(--font-display); font-size: var(--step-1); line-height: 1.4; color: var(--pine); }
.quote-card .by { margin-top: auto; font-size: var(--step--1); }
.quote-card .by strong { display: block; color: var(--pine); font-size: var(--step-0); }
.quote-card .by span { color: var(--stone); }

/* ----- Stat band -------------------------------------------------------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); text-align: center; }
.stat-band .n { font-family: var(--font-display); font-size: var(--step-3); color: var(--copper-100); line-height: 1; }
.bg-pine .stat-band .n { color: var(--copper-100); }
.stat-band .l { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,242,234,0.7); margin-top: 0.6rem; }

/* ----- FAQ -------------------------------------------------------------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0; text-align: left;
  font-family: var(--font-display); font-size: var(--step-1); color: var(--pine);
}
.faq-q .pm { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--copper); transition: transform 0.35s var(--ease); }
.faq-q .pm::before { left: 0; right: 0; top: 12px; height: 2px; }
.faq-q .pm::after { top: 0; bottom: 0; left: 12px; width: 2px; }
.faq-item[open] .faq-q .pm::after { transform: scaleY(0); }
.faq-a { overflow: hidden; }
.faq-a p { padding-bottom: 1.4rem; color: var(--stone); max-width: 68ch; }
details.faq-item summary { list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }

/* ----- Booking widget --------------------------------------------------- */
.booking {
  background: var(--bone-50); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: var(--sp-lg);
  box-shadow: var(--shadow-soft);
}
.booking .price { display: flex; align-items: baseline; gap: 0.4rem; }
.booking .price .amt { font-family: var(--font-display); font-size: var(--step-2); color: var(--pine); }
.booking .price .per { color: var(--stone); font-size: var(--step--1); }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
.field label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.field input, .field select, .field textarea {
  padding: 0.8rem 0.9rem; border: 1px solid var(--line-strong);
  border-radius: var(--radius); background: #fff; transition: border-color 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.trust-row { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; }
.trust-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--stone); font-weight: 600; }
.trust-badge svg { width: 18px; height: 18px; color: var(--moss); }

/* ----- Sticky mobile CTA bar -------------------------------------------- */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 80;
  display: none; align-items: center; gap: 0.8rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(245,242,234,0.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.sticky-cta .sc-price { flex: 1; line-height: 1.1; }
.sticky-cta .sc-price b { font-family: var(--font-display); font-size: 1.1rem; color: var(--pine); }
.sticky-cta .sc-price small { display: block; color: var(--stone); font-size: 0.7rem; }
.sticky-cta .btn { flex: none; }

/* ----- Page hero (interior pages) --------------------------------------- */
.page-hero {
  position: relative; padding-top: calc(var(--header-h) + var(--sp-xl));
  padding-bottom: var(--sp-xl); color: var(--bone); overflow: hidden;
}
.page-hero .bgimg { position: absolute; inset: 0; z-index: 0; }
.page-hero .bgimg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .bgimg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,32,27,0.62), rgba(22,32,27,0.82)); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: var(--bone); max-width: 18ch; }
.page-hero p { color: rgba(245,242,234,0.85); max-width: 60ch; margin-top: var(--sp-sm); font-size: var(--step-1); }
.page-hero .eyebrow { color: var(--copper-100); }
.page-hero .eyebrow::before { background: var(--copper-100); }

/* ----- Breadcrumb ------------------------------------------------------- */
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(245,242,234,0.75); margin-bottom: var(--sp-md); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--copper-100); }
.breadcrumb .sep { opacity: 0.5; }

/* ----- Gallery / masonry ------------------------------------------------ */
.masonry { columns: 3; column-gap: var(--sp-md); }
.masonry .m-item { break-inside: avoid; margin-bottom: var(--sp-md); border-radius: var(--radius-lg); overflow: hidden; cursor: zoom-in; position: relative; }
.masonry .m-item img { width: 100%; transition: transform 0.8s var(--ease); }
.masonry .m-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(15,21,17,0.94); align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; border-radius: 6px; }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; color: var(--bone); background: rgba(255,255,255,0.08); border-radius: 50%; width: 52px; height: 52px; display: grid; place-items: center; transition: background 0.25s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox .lb-close { top: 1.4rem; right: 1.4rem; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); }
.lightbox .lb-prev { left: 1.4rem; }
.lightbox .lb-next { right: 1.4rem; }

/* ----- Filters (properties) --------------------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.chip {
  padding: 0.55rem 1.1rem; border: 1px solid var(--line-strong); border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink); transition: 0.25s var(--ease);
}
.chip:hover { border-color: var(--pine); }
.chip.active { background: var(--pine); color: var(--bone); border-color: var(--pine); }

/* property card */
.prop-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--bone-50); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.prop-card .pc-media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.prop-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.prop-card:hover .pc-media img { transform: scale(1.05); }
.prop-card .pc-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(30,42,36,0.9); color: var(--bone); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 100px; }
.prop-card .pc-body { padding: var(--sp-md); display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.prop-card .pc-body h3{color:#16201b}
.prop-card .pc-specs { display: flex; gap: 1.1rem; color: var(--stone); font-size: 0.85rem; flex-wrap: wrap; }
.prop-card .pc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 0.8rem; border-top: 1px solid var(--line); }

/* ----- Footer ----------------------------------------------------------- */
.site-footer { background: var(--pine-900); color: rgba(245,242,234,0.8); position: relative; }
.site-footer .ridge-top { line-height: 0; }
.footer-main { padding-block: var(--sp-2xl) var(--sp-lg); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-lg); }
.site-footer h4 { color: var(--bone); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: var(--sp-sm); }
.site-footer a { color: rgba(245,242,234,0.72); transition: color 0.25s var(--ease); }
.site-footer a:hover { color: var(--copper-100); }
.footer-links { display: grid; gap: 0.6rem; font-size: 0.9rem; }
.footer-brand .brand-name { color: var(--bone); font-size: 1.4rem; }
.footer-brand p { color: rgba(245,242,234,0.65); margin-top: var(--sp-sm); max-width: 34ch; font-size: 0.9rem; }
.footer-social { display: flex; gap: 0.8rem; margin-top: var(--sp-md); }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; }
.footer-social a:hover { border-color: var(--copper); background: rgba(176,122,78,0.14); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--line-light); padding-block: var(--sp-md);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(245,242,234,0.6);
}
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ----- Reveal animation ------------------------------------------------- */
/* Only hide when JS is active (html.js). No-JS users always see content. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ----- Misc utilities --------------------------------------------------- */
.pill-note { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(176,122,78,0.12); color: var(--copper-600); padding: 0.4rem 0.9rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; }
.divider-line { height: 1px; background: var(--line); border: 0; }
.two-col-text { columns: 2; column-gap: var(--sp-lg); }
.checklist { display: grid; gap: 0.7rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; }
.checklist li svg { width: 20px; height: 20px; color: var(--moss); flex: none; margin-top: 3px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table td { padding: 0.85rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table td:first-child { font-weight: 600; color: var(--pine); width: 40%; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/7; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ----- Prose (legal/policy pages) --------------------------------------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: var(--step-2); margin-top: var(--sp-xl); margin-bottom: var(--sp-sm); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--step-1); margin-top: var(--sp-lg); margin-bottom: 0.5rem; }
.prose p { color: var(--ink); margin-bottom: var(--sp-sm); }
.prose ul { margin: 0 0 var(--sp-md); display: grid; gap: 0.6rem; }
.prose ul li { position: relative; padding-left: 1.5rem; color: var(--ink); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; background: var(--copper); border-radius: 50%; }
.prose strong { color: var(--pine); }
.prose a { color: var(--copper-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose .meta-updated { font-size: 0.85rem; color: var(--stone); margin-bottom: var(--sp-lg); }
.callout { background: var(--bone-50); border: 1px solid var(--line); border-left: 3px solid var(--copper); border-radius: var(--radius); padding: var(--sp-md); margin: var(--sp-md) 0; }
.callout p { margin: 0; }

/* ----- Responsive ------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--sp-lg) var(--sp-md); }
  .footer-brand { grid-column: 1 / -1; }
  .masonry { columns: 2; }
}
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg) var(--sp-md); }
  .exp { grid-template-columns: 1fr; gap: var(--sp-md); }
  .exp.reverse .exp-media { order: 0; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 66px; }
  .booking.is-sidebar { position: static !important; }
}
@media (max-width: 620px) {
  :root { --sp-2xl: 4.5rem; --sp-3xl: 6rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .two-col-text { columns: 1; }
  .hero-meta { gap: 1.2rem 1.8rem; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .info-table td:first-child { width: 46%; }
}
