/* =====================================================
   Red Door Porch — Tier 2 Design System
   Coastal Southern · Cream + Barn Red + Sage + Charcoal
   ===================================================== */

:root {
  /* Palette */
  --cream:        #F6F1E7;
  --cream-deep:   #EDE6D6;
  --paper:        #FBF8F1;
  --ink:          #2A2723;
  --ink-soft:     #5B564E;
  --ink-faint:    #918B81;
  --accent:       #B14A3E;
  --accent-deep:  #8E3225;
  --accent-light: #F7BE9B;
  --sage:         #7A8773;
  --gold:         #C99A4B;
  --border:       #DCD3C0;

  /* Type */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --max-w: 1240px;
  --max-narrow: 720px;
  --radius: 4px;
  --radius-lg: 8px;

  /* Motion */
  --ease:    cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =================== RESET =================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--accent-deep); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 var(--space-md) 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 500; line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 1.95rem); }
h4 { font-size: 1.2rem; font-weight: 500; }
h5 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--sans); font-weight: 700; color: var(--ink-soft); }

p { margin: 0 0 1.2em 0; }
em { font-style: italic; font-family: var(--serif); }
strong { font-weight: 600; color: var(--ink); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 var(--space-sm) 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-lg); }
}

/* =================== REVEAL ON SCROLL =================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =================== BUTTONS =================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-primary {
  background: var(--accent);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(177, 74, 62, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(251, 248, 241, 0.6);
}
.btn-ghost:hover {
  background: rgba(251, 248, 241, 0.12);
  border-color: var(--paper);
  color: var(--paper);
}

.link-arrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow span { transition: transform 0.25s var(--ease); display: inline-block; }

/* =================== HEADER =================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--space-md);
  background: rgba(246, 241, 231, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
}
@media (min-width: 768px) {
  .site-header { padding: 16px var(--space-lg); }
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.logo:hover { color: var(--accent-deep); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--accent); }
.site-nav .btn { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.25s;
}
@media (max-width: 860px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1.2rem;
    align-items: flex-start;
  }
}

/* =================== HERO =================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(20, 14, 10, 0.78) 0%, rgba(42, 28, 22, 0.5) 55%, rgba(20, 14, 10, 0.72) 100%);
  z-index: 2;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.kenburns {
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.08) translateY(-1%); }
}
@media (prefers-reduced-motion: reduce) {
  .kenburns { animation: none; }
}
.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}
@media (min-width: 768px) {
  .hero-content { padding: var(--space-3xl) var(--space-lg); }
}
.hero .eyebrow { color: var(--accent-light); }
.hero-title {
  color: var(--paper);
  max-width: 14ch;
  margin-bottom: var(--space-md);
}
.hero-title em {
  color: var(--accent-light);
  font-style: italic;
}
.hero-sub {
  font-size: 1.18rem;
  max-width: 40ch;
  margin-bottom: var(--space-lg);
  color: rgba(251, 248, 241, 0.94);
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 24px;
  height: 36px;
  border: 1.5px solid rgba(251, 248, 241, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
}
.hero-scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--paper);
  border-radius: 2px;
  margin-top: 6px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  60% { opacity: 0; transform: translateY(12px); }
  61% { transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =================== TRUST STRIP =================== */

.trust {
  padding: var(--space-lg) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}
@media (min-width: 768px) {
  .trust-grid { flex-direction: row; justify-content: center; gap: var(--space-2xl); }
}
.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--ink-faint);
  margin: 0;
}
.trust-logos {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logos span {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =================== INTRO =================== */

.intro {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}
.intro-text {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.42;
  font-weight: 400;
  color: var(--ink);
  max-width: 56ch;
  margin: 0 auto;
}

/* =================== SECTION HEAD =================== */

.section-head {
  margin-bottom: var(--space-xl);
  max-width: 60ch;
}
.section-head h2 { margin: 0; }
.section-lede {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin-top: var(--space-sm);
  font-style: italic;
}

/* =================== STAYS =================== */

.stays {
  padding: var(--space-2xl) 0;
  background: var(--paper);
}
.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 880px) {
  .property-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}
.property {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.property:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px -28px rgba(42, 28, 22, 0.22);
}
.property-photo {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.property-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.property:hover .property-photo img { transform: scale(1.06); }
.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(42, 39, 35, 0.85);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.property-body {
  padding: var(--space-lg) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 768px) {
  .property-body { padding: var(--space-lg); }
}
.property-loc {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.property h3 { margin: 0 0 0.35rem 0; }
.property-meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.01em;
}
.property-desc {
  font-size: 0.97rem;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: var(--space-md);
}
.property-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.property-tags li {
  font-size: 0.74rem;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 500;
}
.property-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

/* TREEHOUSE WAITLIST */

.treehouse-waitlist {
  margin-top: var(--space-xl);
  padding: var(--space-xl) var(--space-lg);
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}
@media (min-width: 880px) {
  .treehouse-waitlist { grid-template-columns: 1.5fr 1fr; gap: var(--space-xl); }
}
.tw-text h3 { margin-bottom: 0.5rem; }
.tw-text p { color: var(--ink-soft); margin: 0; }
.tw-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tw-form input {
  flex: 1 1 200px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
}
.tw-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* =================== WHY DIRECT =================== */

.direct {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-2xl) 0;
}
.direct h2 { color: var(--cream); max-width: 14ch; }
.direct .eyebrow { color: var(--accent-light); }
.direct-lede {
  color: rgba(246, 241, 231, 0.78);
  font-size: 1.05rem;
  max-width: 38ch;
  margin-top: var(--space-md);
}

.direct-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 980px) {
  .direct-grid { grid-template-columns: 1fr 1.4fr; gap: var(--space-2xl); }
}
.direct-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 640px) {
  .direct-points { grid-template-columns: 1fr 1fr; }
}
.point {
  position: relative;
}
.point-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.point h4 {
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
}
.point p {
  color: rgba(246, 241, 231, 0.78);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

/* =================== HOSTS =================== */

.hosts {
  padding: var(--space-2xl) 0;
  background: var(--paper);
}
.hosts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 880px) {
  .hosts-grid { grid-template-columns: 1.2fr 1fr; gap: var(--space-2xl); }
}
.hosts-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.hosts-card {
  padding: var(--space-xl) var(--space-lg);
  background: var(--cream);
  border-left: 4px solid var(--accent);
  position: relative;
  border-radius: var(--radius);
}
.hosts-quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  margin: 0;
  position: absolute;
  top: 0.4rem;
  left: 1.4rem;
  opacity: 0.45;
}
.hosts-quote {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  margin: 1rem 0 1.5rem 0;
  position: relative;
}
.hosts-attr {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* =================== PLACES =================== */

.places {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}
.places-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 880px) {
  .places-grid { grid-template-columns: 1.1fr 1fr; gap: var(--space-2xl); }
}
.place-text p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.place-bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0 0;
}
.place-bullets li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(42, 39, 35, 0.08);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.place-bullets li:last-child { border-bottom: 0; }
.place-bullets strong {
  color: var(--accent);
  font-weight: 600;
  margin-right: 0.6em;
  font-family: var(--sans);
}
.place-map {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  overflow: hidden;
  box-shadow: 0 10px 32px -16px rgba(42, 28, 22, 0.15);
}
.place-map svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* =================== NEWSLETTER =================== */

.newsletter {
  padding: var(--space-2xl) 0;
  background: var(--cream-deep);
}
.newsletter-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  box-shadow: 0 20px 60px -32px rgba(42, 28, 22, 0.18);
}
@media (min-width: 880px) {
  .newsletter-card { grid-template-columns: 1.4fr 1fr; padding: var(--space-2xl); gap: var(--space-2xl); }
}
.nl-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 18ch;
}
.nl-text p { color: var(--ink-soft); margin: 0; }
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nl-form input {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
}
.nl-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.nl-form .btn { width: 100%; }
.nl-success {
  display: none;
  color: var(--sage);
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}
.nl-form.submitted input,
.nl-form.submitted button { display: none; }
.nl-form.submitted .nl-success { display: block; }

/* =================== CONTACT =================== */

.contact {
  padding: var(--space-2xl) 0;
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1.4fr 1fr; gap: var(--space-2xl); }
}
.contact-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.contact-details { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-row { line-height: 1.5; }
.contact-row p { margin: 0.2em 0 0 0; }
.contact-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.contact-details a {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
}
.contact-details a:hover { color: var(--accent); }

/* =================== STICKY BOOKING BAR =================== */

.sticky-book {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 12px var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  box-shadow: 0 -12px 32px -16px rgba(42, 28, 22, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-book.visible { transform: translateY(0); }
.sticky-book p { margin: 0; font-size: 0.88rem; font-weight: 500; color: var(--ink); }
@media (min-width: 880px) {
  .sticky-book { display: none !important; }
}

/* =================== FOOTER =================== */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-2xl) 0 var(--space-xl);
  margin-bottom: 64px;
}
@media (min-width: 880px) {
  .site-footer { margin-bottom: 0; }
}
.site-footer .container { padding: 0 var(--space-md); }
@media (min-width: 768px) {
  .site-footer .container { padding: 0 var(--space-lg); }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-lg); }
}
.footer-brand { color: var(--cream); }
.footer-brand svg { color: var(--cream); margin-bottom: var(--space-sm); }
.footer-tag {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}
.footer-fine {
  font-size: 0.82rem;
  color: rgba(246, 241, 231, 0.5);
  line-height: 1.6;
  margin: 0;
}
.footer-col h5 {
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: var(--space-md);
}
.footer-col a {
  display: block;
  color: rgba(246, 241, 231, 0.68);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.footer-col a:hover { color: var(--paper); }

/* =====================================================
   PROPERTY DETAIL PAGES
   ===================================================== */

.property-page main { padding-bottom: 0; }

/* PROP HERO */
.prop-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}
.prop-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.prop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 14, 10, 0.85) 0%, rgba(20, 14, 10, 0.2) 60%, rgba(20, 14, 10, 0.45) 100%);
  z-index: 2;
}
.prop-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}
@media (min-width: 768px) {
  .prop-hero-content { padding: var(--space-2xl) var(--space-lg); }
}
.prop-hero .eyebrow { color: var(--accent-light); }
.prop-hero h1 { color: var(--paper); margin-bottom: var(--space-md); }
.prop-hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-style: italic;
  color: rgba(251, 248, 241, 0.92);
  max-width: 36ch;
  margin: 0;
}

/* AT A GLANCE */
.at-glance {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.glance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 640px) {
  .glance-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 880px) {
  .glance-grid { grid-template-columns: repeat(5, 1fr); }
}
.glance-cell {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.glance-cell:nth-child(even) { border-right: 1px solid var(--border); }
@media (min-width: 880px) {
  .glance-cell { border-bottom: 0; }
  .glance-cell:last-child { border-right: 0; }
}
.glance-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.glance-value {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.glance-note {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* PROP STORY */
.prop-story {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 880px) {
  .story-grid { grid-template-columns: 1.6fr 1fr; gap: var(--space-2xl); }
}
.story-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}
.story-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 16px 40px -24px rgba(42, 28, 22, 0.18);
}
.story-card h4 {
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: var(--space-md);
}
.story-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.story-facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--ink);
}
.story-facts li:last-child { border-bottom: 0; }
.story-facts li span {
  color: var(--ink-soft);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* GALLERY */
.gallery {
  padding: var(--space-2xl) 0;
  background: var(--paper);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  grid-auto-rows: 160px;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 10px; }
}
@media (min-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
  }
}
.gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 880px) {
  .gallery-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.g-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-deep);
  cursor: zoom-in;
  position: relative;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.g-item:hover img { transform: scale(1.06); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
@media (max-width: 639px) {
  .g-tall, .g-wide { grid-row: span 1; grid-column: span 1; }
}
.gallery-more {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-image {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(246, 241, 231, 0.12);
  color: var(--cream);
  border: 1px solid rgba(246, 241, 231, 0.25);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(246, 241, 231, 0.22);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(246, 241, 231, 0.7);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  margin: 0;
}

/* AMENITIES */
.amenities {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 640px) {
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}
@media (min-width: 980px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
.amenity-group h4 {
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.amenity-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.amenity-group li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.amenity-group li:last-child { border-bottom: 0; }

/* NEARBY */
.nearby {
  padding: var(--space-2xl) 0;
  background: var(--paper);
}
.nearby-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 640px) {
  .nearby-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .nearby-grid { grid-template-columns: repeat(4, 1fr); }
}
.nearby-item {
  padding: var(--space-lg);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.nearby-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -18px rgba(42, 28, 22, 0.18);
}
.nearby-time {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
  background: rgba(177, 74, 62, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}
.nearby-item h4 {
  font-family: var(--serif);
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}
.nearby-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* PROP CTA */
.prop-cta {
  padding: var(--space-2xl) 0;
  background: var(--cream-deep);
}
.prop-cta-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  box-shadow: 0 30px 60px -32px rgba(42, 28, 22, 0.4);
}
@media (min-width: 768px) {
  .prop-cta-card {
    grid-template-columns: 1fr auto;
    padding: var(--space-xl) var(--space-2xl);
    gap: var(--space-xl);
  }
}
.prop-cta-card h2 { color: var(--cream); margin-bottom: 0.5rem; }
.prop-cta-card p { color: rgba(246, 241, 231, 0.75); margin: 0; }
