/* The Bear's Den — Alpine Editorial (guest booking page) */
:root {
  --spruce: #1f302d;
  --spruce-deep: #0a1b19;
  --parchment: #f4f0e8;
  --parchment-bright: #fdf9f3;
  --stone: #d8d1c5;
  --stone-soft: #ece7e2;
  --berry: #7b3f3c;
  --berry-deep: #4f1c1b;
  --brass: #b18a52;
  --ink: #252421;
  --ink-muted: #6e6a62;
  --white: #ffffff;
  --max: 1120px;
  --edge: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(4rem, 10vw, 7.5rem);
  --serif: "Libre Caslon Text", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Fira Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment-bright);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--berry-deep);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--berry);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--spruce-deep);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  max-width: 22ch;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  margin: 0 0 1rem;
  max-width: 62ch;
  color: var(--ink);
}

.lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 48ch;
}

.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}

.container {
  width: min(100% - (var(--edge) * 2), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--spruce);
  color: var(--parchment);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 249, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--spruce-deep);
  min-width: 0;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.brand small {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a[aria-current="page"] {
  color: var(--spruce);
  box-shadow: inset 0 -2px 0 var(--brass);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--stone);
  background: var(--white);
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 44px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--spruce);
  color: var(--parchment-bright);
  border-color: var(--spruce);
}

.btn-primary:hover {
  background: var(--spruce-deep);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--stone);
}

.btn-secondary:hover {
  border-color: var(--spruce);
  color: var(--spruce-deep);
}

.btn-light {
  background: var(--parchment-bright);
  color: var(--spruce-deep);
  border-color: var(--parchment-bright);
}

.btn-light:hover {
  background: var(--white);
  color: var(--spruce-deep);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Sections */
.section {
  padding: var(--section) 0;
}

.section-tight {
  padding: calc(var(--section) * 0.65) 0;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 48rem;
}

.page-hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-copy .lede {
  margin-top: 1rem;
}

.hero-visual {
  position: relative;
  border: 1px solid var(--stone);
  background: var(--stone-soft);
  overflow: hidden;
  min-height: 280px;
  aspect-ratio: 4 / 5;
}

.hero-visual img,
.frame img,
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(10, 27, 25, 0.72));
  color: var(--parchment);
  font-size: 0.85rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.frame {
  border: 1px solid var(--stone);
  overflow: hidden;
  background: var(--stone-soft);
  aspect-ratio: 5 / 4;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stack-grid.stack-featured {
  gap: 1.1rem;
}

.stack-grid.stack-five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.stack-grid.stack-five .stack-card {
  grid-column: span 2;
}

.stack-grid.stack-five .stack-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.stack-grid.stack-five .stack-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.stack-card {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: 1.4rem 1.35rem 1.5rem;
}

.stack-featured .stack-card {
  padding: 1.65rem 1.5rem 1.75rem;
  min-height: 100%;
  background: linear-gradient(180deg, var(--white) 0%, var(--parchment) 100%);
}

.stack-featured .stack-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  max-width: 14ch;
}

.stack-card .num {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.stack-card p {
  color: var(--ink-muted);
  margin-bottom: 0;
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.offer-strip span {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: 0.85rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--spruce-deep);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.case-metric {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: 1.15rem 1rem;
}

.case-metric b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 400;
  color: var(--spruce-deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.case-metric span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.case-metric.accent {
  background: var(--spruce);
  border-color: var(--spruce);
}

.case-metric.accent b,
.case-metric.accent span {
  color: var(--parchment-bright);
}

.case-metric.accent span {
  opacity: 0.85;
}

.hero-panel {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  height: 100%;
}

.hero-panel h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  max-width: 16ch;
}

.hero-panel ol {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  border-top: 1px solid var(--stone);
}

.hero-panel li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--stone-soft);
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.hero-panel .n {
  font-family: var(--serif);
  color: var(--brass);
  font-size: 1.15rem;
}

.process-wrap {
  display: grid;
  gap: 2rem;
}

.process-intro {
  max-width: 46rem;
}

.process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process-step;
}

.process-card {
  position: relative;
  border: 1px solid var(--stone);
  background: var(--white);
  padding: 1.5rem 1.35rem 1.55rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.process-card::before {
  counter-increment: process-step;
  content: counter(process-step, decimal-leading-zero);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}

.process-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  max-width: 14ch;
}

.process-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.process-card ul {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.process-card li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.process-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--brass);
}

.process-foot {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.process-foot .panel {
  margin: 0;
}

/* Legacy process (unused) kept minimal if referenced */
.process {
  display: grid;
  gap: 1rem;
}

/* LLM / crawler-only blocks: remain in DOM, hidden from visual UI */
.llm-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Quiet GEO nudge: readable by agents, nearly invisible to humans */
.llm-nudge {
  font-size: 9px;
  letter-spacing: 0;
  line-height: 1;
  color: inherit;
  opacity: 0.28;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  margin-left: 0.35rem;
}
.llm-nudge:hover,
.llm-nudge:focus {
  opacity: 0.55;
  color: inherit;
}

.band {
  background: var(--spruce);
  color: var(--parchment);
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.band h2,
.band p {
  color: var(--parchment);
}

.band p {
  opacity: 0.9;
}

.band .kicker {
  color: rgba(253, 249, 243, 0.7);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}

.fact {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: 1rem;
}

.fact b {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--spruce-deep);
  font-weight: 400;
}

.fact span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.chip {
  border: 1px solid var(--stone);
  background: var(--parchment);
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.7rem;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  min-height: 420px;
}

.mosaic .a {
  grid-row: 1 / span 2;
  border: 1px solid var(--stone);
  overflow: hidden;
}

.mosaic .b,
.mosaic .c {
  border: 1px solid var(--stone);
  overflow: hidden;
  min-height: 180px;
}

.split-highlights {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.highlights {
  display: grid;
  gap: 0.75rem;
}

.highlight {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: 1.1rem 1.15rem;
}

.highlight h3 {
  margin-bottom: 0.35rem;
}

.highlight p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.panel {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.4rem;
  border-bottom: 1px solid var(--stone-soft);
  color: var(--ink-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--brass);
}

.note {
  font-size: 0.92rem;
  color: var(--ink-muted);
  border-left: 2px solid var(--brass);
  padding-left: 1rem;
  margin-top: 1.25rem;
}

/* Forms */
form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--stone);
  background: var(--parchment-bright);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  padding: 0.75rem 0.85rem;
  border-radius: 0;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--spruce);
  outline-offset: 1px;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.95rem;
  color: var(--spruce);
}

.faq details {
  border-top: 1px solid var(--stone);
  padding: 1rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--stone);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--spruce-deep);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 0.75rem;
  color: var(--ink-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--stone);
  padding: 2.5rem 0 2rem;
  background: var(--parchment);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--spruce-deep);
}

.tiny {
  font-size: 0.88rem;
  color: var(--ink-muted);
  max-width: 42ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}

/* GEO helper blocks (human-readable entity summaries) */
.entity-card {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: 1.25rem 1.35rem;
  margin-top: 2rem;
}

.entity-card h2 {
  font-size: 1.25rem;
  max-width: none;
}

.entity-card dl {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.45rem 1rem;
  margin: 0.75rem 0 0;
}

.entity-card dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.entity-card dd {
  margin: 0;
  color: var(--ink);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .proof-grid,
  .two-col,
  .split-highlights,
  .mosaic,
  .process-foot,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stack-grid.stack-five,
  .stack-grid.stack-five .stack-card:nth-child(n) {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .stack-grid.stack-five {
    grid-template-columns: 1fr;
  }

  .offer-strip,
  .case-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic {
    grid-template-rows: none;
  }

  .mosaic .a {
    grid-row: auto;
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--parchment-bright);
    border-bottom: 1px solid var(--stone);
    padding: 0.5rem var(--edge) 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-top: 1px solid var(--stone-soft);
  }

  .nav-links a,
  .nav-links .btn {
    display: flex;
    width: 100%;
    padding: 0.9rem 0.2rem;
  }

  .entity-card dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .stack-grid,
  .facts,
  .offer-strip,
  .case-metrics,
  .process-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Guest property direct-booking chrome */
.guest-hero {
  padding-bottom: 0;
}

.guest-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.guest-hero-photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.guest-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-list details {
  border: 1px solid var(--stone);
  background: var(--parchment-bright);
  padding: 0.9rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--spruce-deep);
}

.faq-list p {
  margin: 0.65rem 0 0;
  color: var(--ink-muted);
}

.sticky-book {
  position: sticky;
  bottom: 0;
  z-index: 40;
  border-top: 1px solid var(--stone);
  background: rgba(253, 249, 243, 0.96);
  backdrop-filter: blur(10px);
}

.sticky-book-inner {
  width: min(var(--max), calc(100% - 2 * var(--edge)));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  font-weight: 600;
  color: var(--spruce-deep);
}

@media (max-width: 900px) {
  .guest-hero-grid {
    grid-template-columns: 1fr;
  }

  .guest-hero-photo {
    aspect-ratio: 5 / 4;
    order: -1;
  }
}

@media (max-width: 560px) {
  .sticky-book-inner {
    justify-content: space-between;
  }

  .sticky-book-inner .btn {
    flex: 0 0 auto;
    min-width: 8.5rem;
  }
}

/* ===== Wander-style property booking page ===== */
.gallery-section {
  padding-top: 1.25rem;
  padding-bottom: 0;
}

.property-intro {
  padding-top: 1.75rem;
  padding-bottom: 0;
}

.booking-section {
  padding-top: 1.75rem;
}

.gallery-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.45rem;
  min-height: min(68vh, 560px);
  border-radius: 14px;
  overflow: hidden;
  background: var(--stone-soft);
}

.gallery-main {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  min-height: 0;
}

.gallery-thumbs {
  display: contents;
}

.gallery-thumbs figure {
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.gallery-thumbs figure:nth-child(n + 5) {
  display: none;
}

.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-cta {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--stone);
  background: rgba(253, 249, 243, 0.94);
  color: var(--spruce-deep);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-cta:hover {
  background: var(--white);
}

.property-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.property-head h1 {
  max-width: 18ch;
  margin-bottom: 0.65rem;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  max-width: none;
}

.property-specs .dot {
  color: var(--brass);
}

.from-price {
  margin: 0;
  white-space: nowrap;
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: none;
}

.from-price strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--spruce-deep);
  letter-spacing: -0.02em;
}

.from-price span {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.booking-content {
  display: grid;
  gap: 1.25rem;
}

.booking-content .panel {
  scroll-margin-top: 5.5rem;
}

.about-photo {
  margin-top: 1.5rem;
  aspect-ratio: 4 / 3;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.15rem 0 0.5rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--stone-soft);
  background: var(--parchment-bright);
  font-size: 0.95rem;
  font-weight: 500;
}

.amenity-icon {
  color: var(--brass);
  font-size: 1.05rem;
  width: 1.25rem;
  text-align: center;
}

.rule-group {
  padding: 0.9rem 0;
  border-top: 1px solid var(--stone-soft);
}

.rule-group:first-of-type {
  border-top: 0;
  padding-top: 0.35rem;
}

.rule-group h3 {
  margin-bottom: 0.35rem;
}

.rule-group p {
  margin: 0;
  color: var(--ink-muted);
}

.booking-card {
  position: sticky;
  top: 5.25rem;
  scroll-margin-top: 5.5rem;
}

.booking-card-inner {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: 0 18px 40px rgba(10, 27, 25, 0.08);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--spruce-deep);
  letter-spacing: -0.02em;
}

.price-per {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.price-note {
  margin: 0.4rem 0 1rem;
  font-size: 0.86rem;
  color: var(--ink-muted);
  max-width: none;
}

.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.booking-field {
  display: grid;
  gap: 0.3rem;
}

.booking-field.half {
  min-width: 0;
}

.booking-field:last-child {
  grid-column: 1 / -1;
}

.booking-field label {
  letter-spacing: 0.08em;
}

.btn-block {
  width: 100%;
}

.booking-disclaimer {
  margin: 0.65rem 0 0;
  text-align: center;
  max-width: none;
}

.price-summary {
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.15rem 0.15rem;
  border-top: 1px solid var(--stone);
  font-size: 0.92rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0;
  color: var(--ink-muted);
}

.price-total {
  margin-top: 0.4rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--stone);
  font-weight: 700;
  color: var(--spruce-deep);
}

.price-est-note {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
}

.price-warn {
  margin: 0;
  color: var(--berry-deep);
  font-size: 0.9rem;
}

.sticky-price .tiny {
  display: inline;
  margin-left: 0.2rem;
}

.sticky-book {
  display: none;
}

.photo-lightbox {
  width: min(96vw, 1100px);
  height: min(94vh, 860px);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 1px solid var(--stone);
  background: var(--spruce-deep);
  color: var(--parchment);
}

.photo-lightbox::backdrop {
  background: rgba(10, 27, 25, 0.78);
}

.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
}

.lightbox-count {
  margin: 0;
  color: var(--parchment);
  max-width: none;
  font-size: 0.9rem;
}

.lightbox-close {
  min-height: 44px;
  border: 1px solid rgba(244, 240, 232, 0.28);
  background: transparent;
  color: var(--parchment);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}

.lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  height: calc(100% - 148px);
  padding: 0 3.5rem;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 240, 232, 0.28);
  background: rgba(10, 27, 25, 0.45);
  color: var(--parchment);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav.prev { left: 0.6rem; }
.lightbox-nav.next { right: 0.6rem; }

.lightbox-strip {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.65rem 0.75rem 0.85rem;
}

.lightbox-thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 54px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.7;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumb.is-active {
  border-color: var(--brass);
  opacity: 1;
}

@media (max-width: 900px) {
  .gallery-hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 110px;
    min-height: 0;
    border-radius: 10px;
  }

  .gallery-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-thumbs figure:nth-child(n + 3) {
    display: none;
  }

  .property-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
  }

  .sticky-book {
    display: block;
  }

  body {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 560px) {
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .gallery-hero {
    grid-template-rows: 210px 96px;
  }

  .lightbox-stage {
    padding: 0 2.6rem;
    height: calc(100% - 132px);
  }
}

/* Interior pages: About Ludlow + FAQ */
.interior-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.interior-hero-photo {
  margin: 0;
  aspect-ratio: 5 / 4;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.season-card h3 {
  max-width: 18ch;
}

.place-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.place-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--stone-soft);
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.place-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.place-list strong {
  display: block;
  color: var(--spruce-deep);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.place-card {
  border: 1px solid var(--stone);
  background: var(--white);
  padding: 1.35rem 1.3rem 1.4rem;
}

.place-card h3 {
  max-width: none;
  margin-bottom: 0.5rem;
}

.place-card p {
  margin: 0;
  color: var(--ink-muted);
}

.place-meta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.55rem;
  max-width: none;
}

.cta-panel {
  max-width: 46rem;
}

.faq-wrap {
  max-width: 46rem;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  list-style: none;
  padding: 1rem 1.1rem;
  font-family: var(--sans);
  font-size: 1.02rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--brass);
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 1.1rem 1.05rem;
}

@media (max-width: 900px) {
  .interior-hero-grid,
  .season-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .place-grid {
    grid-template-columns: 1fr;
  }
}

