/* ============================================
   EMU LODGE — Boutique Stays in Sunbury
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT,WONK@0,9..144,300..900,0..100,0..1;1,9..144,300..900,0..100,0..1&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --bone:      #F5EFE5;
  --cream:     #EBE2D0;
  --paper:     #FFFEFB;
  --ink:       #1A1F1B;
  --ink-soft:  #2B342D;
  --muted:     #6B6A5E;
  --moss:      #4A5D4A;
  --clay:      #B8553C;
  --ochre:     #C89B6B;
  --rule:      rgba(26,31,27,0.12);
  --shadow-s:  0 1px 2px rgba(26,31,27,0.04), 0 8px 24px rgba(26,31,27,0.06);
  --shadow-m:  0 2px 8px rgba(26,31,27,0.08), 0 24px 60px rgba(26,31,27,0.12);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --max:       1320px;
  --gutter:    clamp(20px, 4vw, 56px);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.display {
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--clay);
}
.h1 { font-size: clamp(48px, 8vw, 124px); }
.h2 { font-size: clamp(36px, 5vw, 72px); }
.h3 { font-size: clamp(24px, 3vw, 40px); }
.lede {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
}

/* ---------- LAYOUT ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(64px, 10vw, 140px) 0; }
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 229, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--clay);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--bone), inset 0 0 0 5px var(--clay);
}
.brand .ampersand {
  color: var(--clay);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "WONK" 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--clay); }
.nav-links a.current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
}
.nav-cta {
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bone);
  border-radius: 100px;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--clay); transform: translateY(-1px); }
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
  }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--gutter);
    background: var(--bone);
    border-bottom: 1px solid var(--rule);
    gap: 18px;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--bone);
}
.btn-primary:hover { background: var(--clay); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap .25s ease, color .25s ease;
}
.btn-arrow:hover { gap: 14px; color: var(--clay); border-color: var(--clay); }

/* ---------- HOME HERO ---------- */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(80px, 12vw, 160px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero-title { margin: 0; }
.hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.hero-meta .item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta .num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.hero-meta .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--cream);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(26,31,27,0.18) 100%);
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--bone);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { aspect-ratio: 4 / 3; order: -1; }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  background: var(--bone);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll 38s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  font-variation-settings: "WONK" 1, "opsz" 144;
  white-space: nowrap;
}
.marquee-track span::after {
  content: '✦';
  margin-left: 64px;
  color: var(--clay);
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: clamp(40px, 6vw, 80px);
  align-items: end;
}
.section-head .col-label {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-head .col-label .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--clay);
  font-style: italic;
  font-variation-settings: "WONK" 1;
}
.section-head h2 { margin: 0; }
.section-head p { margin: 0; max-width: 56ch; }

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ---------- PROPERTY CARDS (home) ---------- */
.props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.prop-card {
  position: relative;
  display: block;
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.prop-card .img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}
.prop-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.prop-card:hover .img-wrap img { transform: scale(1.05); }
.prop-card .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(245,239,229,.95);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.prop-card .body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prop-card .body h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.prop-card .body .loc {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.prop-card .body .stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}
.prop-card .body .stats span { display: inline-flex; align-items: center; gap: 6px; }
.prop-card .arrow {
  align-self: flex-start;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* ---------- STORY (about) ---------- */
.story {
  background: var(--cream);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.story-img {
  aspect-ratio: 5 / 6;
  background: var(--paper);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-content h2 { margin: 0 0 28px; }
.story-content p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 56ch;
}
.story-quote {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  font-variation-settings: "WONK" 1, "opsz" 144;
  color: var(--ink);
}
@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ---------- REVIEWS ---------- */
.reviews { background: var(--bone); }
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.rating-big {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
}
.rating-big .score {
  font-size: 84px;
  font-weight: 350;
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.rating-big .stars { color: var(--clay); font-size: 22px; letter-spacing: 0.2em; }
.rating-big .of { font-size: 14px; color: var(--muted); letter-spacing: 0.06em; font-family: var(--font-body); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--rule);
}
.review .quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 350;
  flex: 1;
  font-variation-settings: "opsz" 144;
}
.review .who {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.review .who .name { font-size: 14px; font-weight: 500; }
.review .who .meta { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
footer .brand { color: var(--bone); }
footer .brand::before { background: var(--clay); box-shadow: inset 0 0 0 4px var(--ink), inset 0 0 0 5px var(--clay); }
footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,229,0.5);
  margin: 0 0 18px;
  font-weight: 500;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer li a { font-size: 14px; color: var(--bone); opacity: .85; transition: opacity .2s, color .2s; }
footer li a:hover { color: var(--ochre); opacity: 1; }
.foot-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  margin-top: 16px;
  line-height: 1.5;
  color: rgba(245,239,229,0.7);
  max-width: 28ch;
  font-variation-settings: "WONK" 1;
}
.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(245,239,229,0.12);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: rgba(245,239,229,0.55);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
}

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

/* ---------- LISTING HEADER ---------- */
.listing-head {
  padding: clamp(40px, 6vw, 72px) 0 24px;
}
.listing-head .crumb {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.listing-head .crumb a:hover { color: var(--clay); }
.listing-head h1 {
  margin: 0 0 16px;
}
.listing-head .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.listing-head .meta-row .star { color: var(--clay); }
.listing-head .meta-row .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: clamp(360px, 60vh, 620px);
  margin: 32px 0 0;
  border-radius: 4px;
  overflow: hidden;
}
.gallery .g {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.gallery .g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s;
}
.gallery .g:hover img { transform: scale(1.04); }
.gallery .g.main { grid-row: span 2; }
.gallery .more {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 2fr 1fr 1fr; }
  .gallery .g.main { grid-column: span 2; grid-row: span 1; }
}

/* ---------- LISTING BODY ---------- */
.listing-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(56px, 8vw, 96px) 0;
}
@media (max-width: 880px) { .listing-body { grid-template-columns: 1fr; } }

.listing-section { padding: 36px 0; border-top: 1px solid var(--rule); }
.listing-section:first-child { border-top: 0; padding-top: 0; }
.listing-section h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.listing-section p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}

/* ---------- HIGHLIGHTS ---------- */
.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 16px 0 8px;
}
.highlight {
  background: var(--paper);
  padding: 22px;
  border-radius: 4px;
  border: 1px solid var(--rule);
}
.highlight .icon {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--clay);
  font-style: italic;
  font-variation-settings: "WONK" 1;
  margin-bottom: 10px;
  display: block;
}
.highlight h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
}
.highlight p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 760px) { .highlights { grid-template-columns: 1fr; } }

/* ---------- AMENITIES ---------- */
.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.amenities li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  padding: 6px 0;
}
.amenities li::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}
@media (max-width: 520px) { .amenities { grid-template-columns: 1fr; } }

/* ---------- BEDROOMS ---------- */
.bedrooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bedroom {
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.bedroom .img {
  aspect-ratio: 4 / 3;
  background: var(--cream);
  overflow: hidden;
}
.bedroom .img img { width: 100%; height: 100%; object-fit: cover; }
.bedroom .info { padding: 16px 18px 18px; }
.bedroom h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 4px;
}
.bedroom p { font-size: 13px; color: var(--muted); margin: 0; }
@media (max-width: 760px) { .bedrooms { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .bedrooms { grid-template-columns: 1fr; } }

/* ---------- BOOKING SIDEBAR ---------- */
.booking {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px;
  box-shadow: var(--shadow-s);
}
.booking .price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
}
.booking .price .amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
}
.booking .price .per { font-size: 14px; color: var(--muted); }
.booking .price .note { font-size: 12px; color: var(--clay); margin-left: auto; letter-spacing: 0.08em; text-transform: uppercase; }
.booking .field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: border-color .2s;
}
.booking .field:focus-within { border-color: var(--ink); }
.booking .field label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.booking .field input, .booking .field select {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
  padding: 2px 0;
  width: 100%;
}
.booking .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.booking .full { margin-bottom: 8px; }
.booking .btn { width: 100%; justify-content: center; margin-top: 12px; }
.booking .breakdown {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.booking .breakdown .line { display: flex; justify-content: space-between; }
.booking .breakdown .total {
  font-weight: 600;
  font-size: 15px;
  border-top: 1px solid var(--rule);
  padding-top: 10px;
  margin-top: 4px;
}

/* ============================================
   EMU CALENDAR — custom range picker
   ============================================ */
.emu-cal { position: relative; }

.emu-cal-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  transition: border-color .2s, box-shadow .2s;
}
.emu-cal-fields:hover { border-color: var(--ink); }
.emu-cal-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  text-align: left;
  background: var(--paper);
  cursor: pointer;
  position: relative;
  transition: background .15s;
}
.emu-cal-field:first-child { border-right: 1px solid var(--rule); }
.emu-cal-field:hover { background: var(--bone); }
.emu-cal-field.active {
  background: var(--bone);
  box-shadow: inset 0 0 0 2px var(--ink);
  border-radius: 8px;
  z-index: 1;
}
.emu-cal-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.emu-cal-value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
  transition: color .15s;
}
.emu-cal-value.set {
  color: var(--ink);
  font-weight: 500;
}

.emu-cal-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-m);
  z-index: 40;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
  width: max(100%, 660px);
}
.emu-cal-popover.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 720px) {
  .emu-cal-popover {
    width: 100%;
    min-width: 0;
    padding: 18px;
  }
}

.emu-cal-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 8px;
}
.emu-cal-nav {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--bone);
  margin-top: 4px;
  transition: background .15s, color .15s, transform .15s;
}
.emu-cal-nav:hover {
  background: var(--ink);
  color: var(--paper);
  transform: scale(1.05);
}

.emu-cal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 720px) {
  .emu-cal-grid { grid-template-columns: 1fr; }
}

.emu-cal-month-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
  text-align: center;
  color: var(--ink);
}
.emu-cal-dayheads {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.emu-cal-dayheads span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
}

.emu-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.emu-cal-days .d {
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 50%;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: background .12s, color .12s, transform .12s;
  font-variant-numeric: tabular-nums;
}
.emu-cal-days .d:not(.empty):not(.past):not(.blocked):hover {
  background: var(--cream);
  transform: scale(1.06);
}
.emu-cal-days .d.empty {
  visibility: hidden;
  cursor: default;
}
.emu-cal-days .d.past {
  opacity: 0.28;
  cursor: not-allowed;
  text-decoration: line-through;
}
.emu-cal-days .d.blocked {
  color: var(--muted);
  cursor: not-allowed;
  text-decoration: line-through;
  background:
    repeating-linear-gradient(45deg, transparent 0 4px, rgba(26,31,27,0.08) 4px 5px);
}
.emu-cal-days .d.blocked::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 1px;
  background: var(--muted);
  transform: rotate(-12deg);
  opacity: 0.5;
}
.emu-cal-days .d.today {
  box-shadow: inset 0 0 0 1px var(--ink);
}
.emu-cal-days .d.in-range,
.emu-cal-days .d.hover-range {
  background: var(--cream);
  border-radius: 0;
}
.emu-cal-days .d.pick {
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  transform: scale(1.04);
  z-index: 2;
}
.emu-cal-days .d.pick.pick-start {
  border-radius: 50% 0 0 50%;
}
.emu-cal-days .d.pick.pick-end,
.emu-cal-days .d.hover-end {
  border-radius: 0 50% 50% 0;
}
.emu-cal-days .d.pick.pick-start.pick-end {
  border-radius: 50%;
}
.emu-cal-days .d.hover-end {
  background: var(--ink);
  color: var(--paper);
}

.emu-cal-legend {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.emu-cal-legend .lg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.emu-cal-legend .lg-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.lg-dot.lg-pick { background: var(--ink); }
.lg-dot.lg-range { background: var(--cream); border: 1px solid var(--rule); }
.lg-dot.lg-blocked {
  background: repeating-linear-gradient(45deg, transparent 0 3px, rgba(26,31,27,0.18) 3px 4px);
  border: 1px solid var(--rule);
}
.emu-cal-clear {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
  cursor: pointer;
}
.emu-cal-clear:hover { color: var(--clay); }

.emu-cal-summary {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  min-height: 1px;
}
.emu-cal-summary .row {
  display: flex;
  justify-content: space-between;
}
.emu-cal-summary .row.total {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-top: 1px solid var(--rule);
  padding-top: 10px;
  margin-top: 4px;
}
.emu-cal-summary .emu-cal-hint {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--muted);
  font-variation-settings: "WONK" 1;
  text-align: center;
  padding: 4px 0;
}
.emu-cal-summary .emu-cal-warn {
  background: rgba(184, 85, 60, 0.08);
  color: var(--clay);
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
}

/* When the calendar lives inside the booking sidebar, give it a touch less padding */
.booking .emu-cal-popover {
  width: max(660px, 100%);
  left: auto;
  right: 0;
}
@media (max-width: 1100px) {
  .booking .emu-cal-popover { right: auto; left: 0; }
}

/* ============================================
   PHOTO GRADING — editorial color treatment
   ============================================ */
/* Default grade — every img on the site gets a subtle warm-editorial look.
   Applied via class so we can opt out where needed. */
img.graded,
.gallery .g img,
.prop-card .img-wrap img,
.hero-img img,
.story-img img,
.bedroom .img img {
  filter: contrast(1.05) saturate(1.06) brightness(1.015) sepia(0.04);
  transition: filter .8s cubic-bezier(.2,.7,.2,1), transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.prop-card:hover .img-wrap img,
.gallery .g:hover img,
.bedroom:hover .img img {
  filter: contrast(1.08) saturate(1.12) brightness(1.04) sepia(0.02);
}

/* Vignette wrapper — adds subtle darkening at corners for depth */
.img-vignette {
  position: relative;
  overflow: hidden;
}
.img-vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 110% 80% at 50% 45%, transparent 50%, rgba(26,31,27,0.22) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Film grain overlay — adds tactile texture to large hero/gallery images.
   Lives as a pseudo-element on `.grain` containers. */
.grain {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.grain::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

/* Apply hero treatment automatically */
.hero-img { isolation: isolate; }
.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}
.hero-img img {
  filter: contrast(1.07) saturate(1.08) brightness(1.02) sepia(0.05);
}

/* Gallery: add light vignette to the main hero image */
.gallery .g.main {
  position: relative;
  isolation: isolate;
}
.gallery .g.main::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(26,31,27,0) 60%, rgba(26,31,27,0.15) 100%);
}

/* ---------- LOCATION BLOCK ---------- */
.location-block {
  background: var(--cream);
  border-radius: 4px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.location-block .map-vis {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 70% 40%, rgba(184,85,60,0.16), transparent 50%),
    radial-gradient(circle at 30% 60%, rgba(74,93,74,0.18), transparent 50%),
    linear-gradient(135deg, #DCD2BD 0%, #C5BBA4 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.location-block .pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--clay);
  border-radius: 50%;
  border: 3px solid var(--paper);
  top: 48%; left: 52%;
  box-shadow: 0 0 0 12px rgba(184,85,60,0.18), 0 0 0 24px rgba(184,85,60,0.08);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(184,85,60,0.18), 0 0 0 24px rgba(184,85,60,0.08); }
  50% { box-shadow: 0 0 0 16px rgba(184,85,60,0.24), 0 0 0 30px rgba(184,85,60,0.12); }
}
.location-block .dist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-block .dist .row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.location-block .dist .row:last-child { border: 0; }
.location-block .dist .row .place { color: var(--ink-soft); }
.location-block .dist .row .time { font-family: var(--font-display); font-style: italic; color: var(--clay); font-variation-settings: "WONK" 1; }
@media (max-width: 760px) { .location-block { grid-template-columns: 1fr; } }

/* ---------- HOUSE RULES / NOTE ---------- */
.notes {
  background: var(--ink);
  color: var(--bone);
  padding: 40px 36px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.notes h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--ochre);
}
.notes ul { list-style: none; padding: 0; margin: 0; }
.notes li { font-size: 14px; padding: 6px 0; opacity: .85; }
@media (max-width: 760px) { .notes { grid-template-columns: 1fr; } }

/* ---------- BOOKING PAGE ---------- */
.book-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  text-align: center;
}
.book-hero h1 { margin: 0 0 18px; }
.book-hero p { max-width: 56ch; margin: 0 auto; }
.book-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.book-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-s);
}
.book-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--bone);
  font-size: 15px;
  transition: border-color .2s, background .2s;
  font-family: var(--font-body);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 0;
  border-color: var(--ink);
  background: var(--paper);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.book-submit { margin-top: 8px; }
.book-confirm {
  text-align: center;
  padding: 64px 32px;
  display: none;
}
.book-confirm.show { display: block; animation: fadeUp .6s ease; }
.book-confirm .check {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 28px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- PLACEHOLDER (for studio + belleview photos) ---------- */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(26,31,27,0.04) 14px 15px),
    linear-gradient(135deg, var(--cream) 0%, #DCD2BD 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}
.placeholder .ph-icon {
  width: 38px; height: 38px;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-variation-settings: "WONK" 1;
}
.placeholder .ph-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.placeholder .ph-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  font-variation-settings: "WONK" 1;
  max-width: 24ch;
  line-height: 1.4;
}
.placeholder.dark {
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(245,239,229,0.04) 14px 15px),
    linear-gradient(135deg, #2B342D 0%, #1A1F1B 100%);
  color: rgba(245,239,229,0.6);
}
.placeholder.dark .ph-icon { border-color: rgba(245,239,229,0.5); }
.placeholder.dark .ph-sub { color: rgba(245,239,229,0.85); }

/* ---------- REVEAL ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- UTILITY ---------- */
.divider-flourish {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--clay);
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "WONK" 1;
  margin: 24px 0;
}
.divider-flourish::before, .divider-flourish::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ---------- DIRECT BOOKING PANEL ---------- */
.direct-section {
  padding: 0 0 clamp(64px, 10vw, 140px);
}
.direct-panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-s);
  display: grid;
  grid-template-columns: minmax(240px, .85fr) 1.5fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.direct-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.direct-steps div {
  padding: 18px 18px 20px;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 8px;
}
.direct-steps span {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--clay);
  margin-bottom: 12px;
}
.direct-steps strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.direct-steps p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 840px) {
  .direct-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .direct-steps { grid-template-columns: 1fr; }
}


/* ---------- PHOTO & LOCATION POLISH UPDATE ---------- */
.gallery .g,
.prop-card .img-wrap,
.hero-img,
.story-img,
.bedroom .img,
.mini-photo {
  background: var(--cream);
}
.gallery .g img,
.prop-card .img-wrap img,
.hero-img img,
.story-img img,
.bedroom .img img,
.mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prop-card .img-wrap::after,
.gallery .g::after,
.mini-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(26,31,27,0) 55%, rgba(26,31,27,0.16) 100%);
  opacity: .45;
}
.mini-photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.mini-photo {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 6px;
  box-shadow: var(--shadow-s);
}
@media (max-width: 760px) {
  .mini-photo-grid { grid-template-columns: 1fr; }
  .mini-photo { min-height: 260px; }
}
.map-card {
  isolation: isolate;
}
.location-block .map-vis::before,
.location-block .map-vis::after {
  content: '';
  position: absolute;
  inset: 16% -10%;
  border-top: 1px solid rgba(26,31,27,.16);
  transform: rotate(-18deg);
}
.location-block .map-vis::after {
  inset: 54% -8%;
  transform: rotate(14deg);
}
.map-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(26,31,27,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(26,31,27,.14) 1px, transparent 1px);
  background-size: 42px 42px;
}
.map-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 6px;
  background: rgba(245,239,229,.86);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-s);
}
.map-label strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.map-label span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
}

.photo-placeholder { filter: none !important; object-fit: cover; background: var(--cream); }

/* ============================================
   MODERN REFRESH v5 — lighter, cleaner, premium direct-booking UI
   ============================================ */
:root {
  --bone: #f6f1e8;
  --cream: #ede4d2;
  --paper: #fffdf8;
  --ink: #101713;
  --ink-soft: #2b332d;
  --muted: #697067;
  --moss: #365545;
  --sage: #dce5d6;
  --clay: #bc553c;
  --ochre: #d1a56f;
  --sand: #f3eadb;
  --glass: rgba(255, 253, 248, .76);
  --rule: rgba(16, 23, 19, .10);
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-s: 0 12px 34px rgba(16,23,19,.07);
  --shadow-m: 0 22px 80px rgba(16,23,19,.14);
  --shadow-glow: 0 30px 110px rgba(188,85,60,.16);
}

html { scroll-padding-top: 92px; }
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(209,165,111,.20), transparent 30vw),
    radial-gradient(circle at 95% 0%, rgba(54,85,69,.12), transparent 32vw),
    linear-gradient(180deg, #fbf7ef 0%, var(--bone) 46%, #f9f3e8 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .28;
  background-image:
    linear-gradient(rgba(16,23,19,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,23,19,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
::selection { background: rgba(188,85,60,.20); }

/* Floating glass navigation */
.nav {
  top: 14px;
  width: min(calc(100% - 28px), 1380px);
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 999px;
  background: rgba(255,253,248,.72);
  box-shadow: 0 16px 60px rgba(16,23,19,.08);
  overflow: visible;
}
.nav-inner { padding: 12px 18px 12px 20px; }
.brand { letter-spacing: .025em; font-size: 18px; }
.brand::before {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--clay), var(--ochre));
  box-shadow: inset 0 0 0 5px rgba(255,253,248,.72), 0 8px 20px rgba(188,85,60,.20);
}
.nav-links {
  background: rgba(16,23,19,.035);
  border: 1px solid rgba(16,23,19,.055);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
}
.nav-links a.current,
.nav-links a:hover {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 6px 20px rgba(16,23,19,.08);
}
.nav-links a.current::after { display: none; }
.nav-cta {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--ink), #26372e);
  box-shadow: 0 12px 34px rgba(16,23,19,.18);
}
.nav-cta:hover { background: linear-gradient(135deg, var(--clay), #9f3f2c); }
@media (max-width: 760px) {
  .nav { top: 10px; width: min(calc(100% - 20px), 1380px); border-radius: 24px; }
  .nav.open { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; }
  .nav.open .nav-links {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 24px;
    background: rgba(255,253,248,.96);
    box-shadow: var(--shadow-m);
  }
  .nav-cta { padding: 10px 13px; }
}

/* Buttons */
.btn { border-radius: 999px; min-height: 48px; box-shadow: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--ink), #24332a);
  box-shadow: 0 14px 34px rgba(16,23,19,.18);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--clay), #9f3f2c);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(188,85,60,.22);
}
.btn-ghost {
  background: rgba(255,253,248,.62);
  border: 1px solid rgba(16,23,19,.16);
  backdrop-filter: blur(16px);
}
.btn-ghost:hover { transform: translateY(-3px); }

/* Modern home hero */
.hero {
  padding-top: clamp(92px, 8vw, 128px);
  padding-bottom: clamp(64px, 8vw, 118px);
}
.hero::after {
  content: '';
  position: absolute;
  width: 48vw;
  height: 48vw;
  max-width: 720px;
  max-height: 720px;
  right: -14vw;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188,85,60,.11), transparent 66%);
  pointer-events: none;
}
.hero-grid { grid-template-columns: .95fr 1.05fr; align-items: center; }
.hero-title { max-width: 8.6ch; }
.hero .eyebrow,
.listing-head .crumb,
.eyebrow {
  letter-spacing: .16em;
  font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  padding: 0;
  margin-top: 34px;
}
.hero-meta .item {
  padding: 16px;
  border: 1px solid rgba(16,23,19,.08);
  border-radius: 18px;
  background: rgba(255,253,248,.56);
  backdrop-filter: blur(12px);
}
.hero-meta .num { font-size: clamp(18px, 2vw, 26px); color: var(--ink); }
.hero-meta .label { font-size: 11px; line-height: 1.25; color: var(--muted); }
.hero-img {
  min-height: clamp(420px, 58vw, 720px);
  border-radius: 34px;
  box-shadow: var(--shadow-glow), var(--shadow-m);
  border: 10px solid rgba(255,253,248,.72);
  transform: rotate(.75deg);
  isolation: isolate;
}
.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16,23,19,0) 42%, rgba(16,23,19,.44) 100%);
  pointer-events: none;
}
.hero-img::after {
  content: '';
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,253,248,.84);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(16,23,19,.16);
}
.hero-tag {
  top: 20px;
  right: 20px;
  z-index: 4;
  border-radius: 999px;
  background: rgba(255,253,248,.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(16,23,19,.12);
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { max-width: none; }
  .hero-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-img { min-height: 460px; transform: none; }
}
@media (max-width: 560px) {
  .hero-meta { grid-template-columns: 1fr; }
  .hero-img { min-height: 360px; border-width: 6px; border-radius: 26px; }
}

/* Modern property cards */
.marquee { background: transparent; border-block: 1px solid rgba(16,23,19,.08); }
.marquee-track span { opacity: .78; }
.section-head { align-items: end; }
.props { gap: 22px; }
.prop-card {
  border-radius: 28px;
  background: rgba(255,253,248,.74);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 60px rgba(16,23,19,.08);
  overflow: hidden;
}
.prop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 90px rgba(16,23,19,.14);
}
.prop-card .img-wrap { height: 330px; border-radius: 0; }
.prop-card .img-wrap::after { opacity: .72; background: linear-gradient(180deg, rgba(16,23,19,0) 45%, rgba(16,23,19,.38) 100%); }
.prop-card .tag {
  top: 16px;
  left: 16px;
  background: rgba(255,253,248,.84);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  color: var(--ink);
}
.prop-card .body { padding: 26px; }
.prop-card h3 { font-size: 29px; }
.prop-card .stats { color: var(--moss); }
.prop-card .arrow { color: var(--ink); font-weight: 700; }

/* Direct panel */
.direct-panel {
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.68);
  background:
    linear-gradient(135deg, rgba(255,253,248,.84), rgba(246,241,232,.66)),
    radial-gradient(circle at 100% 0%, rgba(188,85,60,.12), transparent 44%);
  box-shadow: var(--shadow-m);
}
.direct-steps div {
  border-radius: 22px;
  background: rgba(255,253,248,.66);
  border-color: rgba(16,23,19,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.direct-steps div:hover { transform: translateY(-4px); box-shadow: var(--shadow-s); }
.direct-steps span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(188,85,60,.12);
  letter-spacing: 0;
  font-weight: 800;
}

/* Story/reviews */
.story-img,
.review,
.book-card {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow-s);
}
.story-img { overflow: hidden; }
.review { background: rgba(255,253,248,.74); }
.rating-big {
  border-radius: 24px;
  background: rgba(255,253,248,.64);
  border: 1px solid rgba(16,23,19,.08);
  padding: 18px 20px;
  width: fit-content;
}

/* Modern listing pages */
.listing-head {
  padding: clamp(96px, 9vw, 132px) 0 36px;
  position: relative;
  overflow: hidden;
}
.listing-head::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 68%;
  background: radial-gradient(circle at 82% 0%, rgba(188,85,60,.13), transparent 42%), radial-gradient(circle at 10% 20%, rgba(54,85,69,.10), transparent 35%);
  pointer-events: none;
}
.listing-head .wrap { position: relative; }
.listing-head h1 {
  font-size: clamp(54px, 8vw, 118px);
  max-width: 11.5ch;
  line-height: .86;
  margin-bottom: 22px;
}
.listing-head .meta-row {
  gap: 10px;
}
.listing-head .meta-row span:not(.dot) {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,253,248,.58);
  border: 1px solid rgba(16,23,19,.08);
}
.listing-head .meta-row .dot { display: none; }
.listing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}
.gallery {
  height: clamp(420px, 62vh, 700px);
  gap: 12px;
  border-radius: 32px;
  box-shadow: var(--shadow-m);
  border: 10px solid rgba(255,253,248,.72);
  background: rgba(255,253,248,.72);
}
.gallery .g { border-radius: 20px; }
.gallery .g.main { border-top-left-radius: 24px; border-bottom-left-radius: 24px; }
.gallery .g::after { opacity: .62; }
.gallery .more {
  bottom: 18px;
  right: 18px;
  background: rgba(255,253,248,.88);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(16,23,19,.14);
}
.listing-body {
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .8fr);
  align-items: start;
}
.listing-section {
  padding: 44px 0;
  border-color: rgba(16,23,19,.09);
}
.listing-section h2 { font-size: clamp(30px, 3vw, 42px); }
.highlights { gap: 14px; }
.highlight {
  border-radius: 24px;
  background: rgba(255,253,248,.72);
  border-color: rgba(255,255,255,.68);
  box-shadow: 0 10px 34px rgba(16,23,19,.06);
}
.highlight .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(188,85,60,.12);
}
.amenities { gap: 12px; padding: 0; }
.amenities li {
  background: rgba(255,253,248,.56);
  border: 1px solid rgba(16,23,19,.07);
  border-radius: 999px;
  padding: 11px 14px;
}
.amenities li::before { background: linear-gradient(135deg, var(--moss), var(--ochre)); }
.bedrooms { gap: 16px; }
.bedroom {
  border-radius: 24px;
  background: rgba(255,253,248,.76);
  border-color: rgba(255,255,255,.68);
  box-shadow: 0 12px 34px rgba(16,23,19,.07);
}
.bedroom .img { border-radius: 20px; margin: 10px 10px 0; }
.bedroom .info { padding: 16px 20px 20px; }
.notes > div,
.location-block,
.mini-photo,
.book-form-wrap .book-card {
  border-radius: 28px;
}
.location-block {
  background: rgba(255,253,248,.62);
  border: 1px solid rgba(255,255,255,.70);
  padding: 18px;
  box-shadow: var(--shadow-s);
}
.location-block .map-vis { border-radius: 22px; min-height: 360px; }
.location-block .dist { padding: 8px 6px; }
.location-block .dist .row { padding: 18px 0; }
.map-label { border-radius: 18px; }
.booking {
  border-radius: 30px;
  padding: 26px;
  background: rgba(255,253,248,.86);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: var(--shadow-m);
  backdrop-filter: blur(18px);
}
.booking .price {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16,23,19,.08);
}
.booking .price .amount { font-size: 44px; }
.booking .price .note {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(188,85,60,.10);
  letter-spacing: .02em;
}
.booking .field {
  border-radius: 16px;
  background: rgba(246,241,232,.66);
}
.booking + div,
aside > div[style*="background"] {
  border-radius: 22px !important;
  background: rgba(255,253,248,.66) !important;
  border: 1px solid rgba(16,23,19,.07);
}

/* Calendar + forms */
.emu-cal-fields { border-radius: 18px; background: rgba(255,253,248,.78); }
.emu-cal-field { padding: 16px; }
.emu-cal-popover {
  border-radius: 28px !important;
  border: 1px solid rgba(255,255,255,.78) !important;
  box-shadow: 0 30px 110px rgba(16,23,19,.18) !important;
  overflow: hidden;
}
.emu-day { border-radius: 999px !important; }
.book-hero {
  padding-top: clamp(106px, 9vw, 142px);
  background: radial-gradient(circle at 50% 0%, rgba(188,85,60,.13), transparent 44%);
}
.book-card {
  background: rgba(255,253,248,.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-m);
}
.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 16px;
  background: rgba(246,241,232,.70);
  border-color: rgba(16,23,19,.10);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 4px rgba(188,85,60,.10);
}
.book-form .form-field:has([data-emu-calendar]) {
  background: rgba(246,241,232,.48);
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(16,23,19,.07);
}

/* Footer */
footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(188,85,60,.18), transparent 28%),
    linear-gradient(135deg, #111814, #25352d);
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: 40px;
}
footer .foot-grid { gap: 34px; }

/* More polished fallback photos */
.photo-placeholder {
  object-fit: cover !important;
  background: linear-gradient(135deg, #e7decf, #c8b89d) !important;
}

@media (max-width: 880px) {
  .listing-body { grid-template-columns: 1fr; }
  .booking { position: relative; top: auto; }
}
@media (max-width: 760px) {
  .gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    border-radius: 24px;
    border-width: 6px;
  }
  .gallery .g { min-height: 190px; border-radius: 18px; }
  .gallery .g.main { grid-column: span 2; min-height: 290px; }
  .amenities { grid-template-columns: 1fr; }
  .listing-head h1 { font-size: clamp(48px, 15vw, 76px); }
}

/* v5 snippet components */
.modern-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.modern-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,253,248,.62);
  border: 1px solid rgba(16,23,19,.08);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}
.book-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px auto 0;
  max-width: 920px;
}
.book-benefits div {
  text-align: left;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,253,248,.68);
  border: 1px solid rgba(16,23,19,.08);
  box-shadow: 0 12px 34px rgba(16,23,19,.06);
}
.book-benefits strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 450;
  margin-bottom: 6px;
}
.book-benefits span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .book-benefits { grid-template-columns: 1fr; }
}


/* ============================================
   V6 — HERO FIX + MOBILE POLISH
   ============================================ */
.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.92fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.hero-title {
  max-width: 7.8ch;
  font-size: clamp(56px, 7.2vw, 108px);
  line-height: 0.93;
  letter-spacing: -0.03em;
}
.hero-img {
  transform: none;
  min-height: clamp(380px, 50vw, 640px);
  border-radius: 32px;
  overflow: hidden;
  border: 8px solid rgba(255,253,248,.8);
  background: #e9e1d3;
}
.hero-img::before,
.hero-img::after {
  content: none !important;
}
.hero-img picture,
.hero-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-img img {
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(1.02) contrast(1.02);
}
.hero-tag {
  top: 18px;
  left: 18px;
  right: auto;
  z-index: 3;
}
.modern-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.modern-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,253,248,.7);
  border: 1px solid rgba(16,23,19,.08);
  font-size: 13px;
}
.gallery picture { display: block; width: 100%; height: 100%; }
.gallery picture img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1024px) {
  .hero-title { font-size: clamp(48px, 8.6vw, 88px); }
}

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .nav-cta { display: none; }

  .hero {
    padding-top: 84px;
    padding-bottom: 52px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-grid > div:first-child { order: 2; }
  .hero-img {
    order: 1;
    min-height: 340px;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    border-width: 6px;
  }
  .hero-title {
    max-width: 7ch;
    font-size: clamp(44px, 14vw, 68px);
    line-height: 0.95;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .modern-trust {
    flex-direction: column;
    align-items: stretch;
  }
  .modern-trust span {
    justify-content: center;
  }
  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }
  .listing-head { padding-top: 84px; }
  .listing-head h1 {
    font-size: clamp(42px, 12.8vw, 64px);
    line-height: 0.96;
  }
  .listing-head .meta-row {
    gap: 10px;
    line-height: 1.6;
  }
  .gallery { grid-template-columns: 1fr; }
  .gallery .g.main,
  .gallery .g { min-height: 240px; }
  .listing-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .booking { position: static !important; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 16px; }
  .nav-inner { padding: 12px 16px; }
  .hero-meta { grid-template-columns: 1fr; }
  .prop-card .img-wrap { height: 240px; }
  .section-head .lede { font-size: 17px; }
}


/* V8 — Belleview main house photo grid */
.main-house-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 8px;
}
@media (max-width: 760px) {
  .main-house-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .main-house-grid { grid-template-columns: 1fr; }
}


/* ============================================
   V9 — cleaner property cards + address privacy
   ============================================ */
.props {
  align-items: stretch;
}
.prop-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}
.prop-card .img-wrap {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 10;
  border-radius: 28px 28px 0 0 !important;
  background: var(--cream);
}
.prop-card .img-wrap img {
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center;
}
.prop-card .body {
  min-height: 0;
}
.prop-card .body .loc {
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--muted);
}
.prop-card .body .stats {
  flex-wrap: wrap;
  gap: 8px 12px;
}
.prop-card .body .stats span:nth-child(even) {
  opacity: .45;
}
@media (min-width: 980px) {
  .props {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .prop-card .img-wrap {
    aspect-ratio: 4 / 3;
  }
}


/* V9 — remove visible Stay No. labels from property cards */
.prop-card .body > .eyebrow:empty { display: none; }
.prop-card .body > .eyebrow:first-child { margin-bottom: -4px; }


/* V10 — 4K-style photo polish */
.gallery img,
.prop-card img,
.story-img img,
.bedroom img,
.mini-photo img,
.hero-img img {
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.photo-hq-note {
  display: none;
}


/* V11 — booking pricing rule */
.pricing-rule-note {
  margin: 14px 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,253,248,.76);
  border: 1px solid rgba(16,23,19,.10);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}
.pricing-rule-note strong { color: var(--ink); }
.emu-cal-summary .row.muted { color: var(--muted); font-size: 12px; }


/* V12 — pricing, map, and hero crop refinements */
.hero-img img { object-position: 38% 56%; }
.emu-cal-summary .row.discount span:last-child { color: var(--clay); font-weight: 800; }
.emu-cal-hint.promo { margin-top: 8px; border: 1px solid rgba(184,85,60,.18); background: rgba(184,85,60,.08); }
.location-block {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
}
.location-block .map-vis {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.location-block .dist {
  position: relative;
  z-index: 3;
  min-width: 0;
  background: rgba(255,253,248,.54);
  border-radius: 22px;
  padding: 10px 18px;
}
.location-block .dist .row { gap: 18px; }
.location-block .dist .row .place { min-width: 0; }
.location-block .dist .row .time { text-align: right; white-space: nowrap; }
@media (max-width: 980px) {
  .location-block { grid-template-columns: 1fr; }
  .location-block .map-vis { min-height: 280px; }
}
@media (max-width: 560px) {
  .location-block { padding: 14px; }
  .location-block .dist { padding: 8px 12px; }
  .location-block .dist .row { align-items: flex-start; gap: 8px; }
  .location-block .dist .row .time { white-space: normal; }
}


/* V13 — Airbnb-style policy blocks and stronger map layout */
.policy-section h2 { margin-bottom: 18px; }
.policy-intro { color: var(--ink-soft); margin: -4px 0 22px; }
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.policy-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,253,248,.78);
  border: 1px solid rgba(16,23,19,.08);
  box-shadow: 0 12px 32px rgba(16,23,19,.05);
}
.policy-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
}
.policy-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}
.policy-card li { margin: 8px 0; }
.rules-copy {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,253,248,.72);
  border: 1px solid rgba(16,23,19,.08);
  color: var(--ink-soft);
}
.rules-copy p { margin: 0 0 14px; }
.rules-copy p:last-child { margin-bottom: 0; }
.booking-policy-summary {
  margin: 14px 0 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(26,31,27,.04);
  border: 1px solid rgba(26,31,27,.10);
}
.booking-policy-summary h3 { margin: 0 0 12px; font-size: 17px; }
.policy-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.policy-mini-grid div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,253,248,.70);
}
.policy-mini-grid strong, .policy-mini-grid span { display: block; }
.policy-mini-grid span { margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.location-block {
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1fr) !important;
  align-items: stretch !important;
  overflow: visible !important;
}
.location-block .map-vis {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 260px !important;
  max-height: 380px;
}
.map-label { left: 18px; right: 18px; bottom: 18px; max-width: calc(100% - 36px); }
@media (max-width: 900px) {
  .policy-grid, .policy-mini-grid { grid-template-columns: 1fr; }
  .location-block { grid-template-columns: 1fr !important; padding: 18px !important; }
  .location-block .map-vis { min-height: 240px !important; }
}


/* V15 — brand logo integration */
.brand {
  gap: 12px;
}
.brand::before {
  content: none !important;
  display: none !important;
}
.brand-logo {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 14px rgba(188,85,60,.18));
}
.brand-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
footer .brand-logo {
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.26));
}
.foot-grid .brand-logo {
  width: 38px;
  height: 38px;
}
@media (max-width: 760px) {
  .brand-logo { width: 30px; height: 30px; }
  .foot-grid .brand-logo { width: 34px; height: 34px; }
}


/* V16 — no-mail booking submission state */
.form-submit-error {
  display: none;
  margin: 6px 0 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(184,85,60,.10);
  border: 1px solid rgba(184,85,60,.28);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}


/* V22 — native booking dates + chat */
.booking-estimate-box {
  margin: 12px 0 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(235,226,208,.82);
  border: 1px solid rgba(16,23,19,.08);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.booking-estimate-box strong { color: var(--ink); }
.date-row input[type="date"] { min-height: 52px; }
.guest-chat-shell { max-width: 780px; margin: 0 auto; padding: 120px 20px 80px; }
.guest-chat-card { background: rgba(255,253,248,.86); border: 1px solid rgba(16,23,19,.08); border-radius: 28px; padding: clamp(22px,4vw,38px); box-shadow: var(--shadow-s); }
.guest-chat-card h1 { margin: 0 0 12px; font-family: var(--font-display); font-size: clamp(38px,6vw,64px); font-weight: 420; line-height: .95; }
.guest-chat-card label { display:block; font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin: 16px 0 7px; font-weight:800; }
.guest-chat-card input, .guest-chat-card textarea { width:100%; border:1px solid rgba(16,23,19,.14); border-radius:14px; padding:14px 16px; background:#fffdfa; color:var(--ink); }
.guest-chat-card textarea { min-height: 180px; resize: vertical; line-height:1.55; }
.chat-thread { display:grid; gap: 10px; max-height: 310px; overflow:auto; padding: 12px; border-radius: 18px; background: rgba(235,226,208,.55); border: 1px solid rgba(16,23,19,.08); margin: 12px 0 16px; }
.chat-msg { padding: 12px 14px; border-radius: 16px; background:#fffdfa; border:1px solid rgba(16,23,19,.08); }
.chat-msg.owner { margin-left: 20px; background: rgba(184,85,60,.10); }
.chat-msg.guest { margin-right: 20px; }
.chat-msg strong { display:block; font-size:12px; margin-bottom:4px; }
.chat-msg span { display:block; font-size:11px; color:var(--muted); margin-bottom:6px; }
.chat-msg p { margin:0; white-space:pre-wrap; color:var(--ink-soft); }
.chat-mini { margin-top: 12px; padding: 12px; border-radius: 16px; background: rgba(235,226,208,.45); font-size: 12px; color: var(--ink-soft); }
.chat-mini strong { display:block; margin-bottom: 5px; }

/* V25 — Fancy Airbnb-aware date picker */
.date-lux-field {
  grid-column: 1 / -1;
}
.emu-cal-luxe {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(188,85,60,.14), transparent 35%),
    linear-gradient(135deg, rgba(255,253,248,.92), rgba(246,241,232,.72));
  border: 1px solid rgba(16,23,19,.08);
  box-shadow: 0 18px 60px rgba(16,23,19,.08);
}
.emu-cal-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.emu-cal-sync {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-soft);
}
.emu-cal-sync strong {
  color: var(--ink);
  font-weight: 800;
}
.sync-pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #9a8f7c;
  box-shadow: 0 0 0 4px rgba(154,143,124,.12);
}
.emu-cal-sync.synced .sync-pulse { background: #2f7d53; box-shadow: 0 0 0 4px rgba(47,125,83,.14); }
.emu-cal-sync.syncing .sync-pulse { background: #c48a2c; box-shadow: 0 0 0 4px rgba(196,138,44,.16); animation: syncPulse 1s infinite alternate; }
.emu-cal-sync.fallback .sync-pulse { background: var(--clay); box-shadow: 0 0 0 4px rgba(188,85,60,.12); }
@keyframes syncPulse { from { transform: scale(.9); opacity: .7; } to { transform: scale(1.18); opacity: 1; } }
.emu-cal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.emu-cal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,253,248,.76);
  border: 1px solid rgba(16,23,19,.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}
.emu-cal-links a:hover { color: var(--clay); border-color: rgba(188,85,60,.28); }
.emu-cal-luxe .emu-cal-fields {
  border: 1px solid rgba(16,23,19,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.emu-cal-days .d.blocked {
  color: rgba(26,31,27,.35);
  background: repeating-linear-gradient(135deg, rgba(188,85,60,.13) 0 5px, rgba(188,85,60,.25) 5px 6px);
  border-radius: 999px;
  text-decoration: line-through;
  cursor: not-allowed;
}
.emu-cal-days .d.today:not(.blocked):not(.pick) {
  outline: 2px solid rgba(188,85,60,.35);
  outline-offset: 2px;
}
.airbnb-sync-note {
  border: 1px solid rgba(188,85,60,.14);
  background: rgba(246,241,232,.74);
}
@media (max-width: 720px) {
  .emu-cal-topbar { display: block; }
  .emu-cal-links { justify-content: flex-start; margin-top: 10px; }
  .emu-cal-luxe { padding: 14px; border-radius: 22px; }
}

/* ---------- V28 TRUST / FAQ / BOOKING FLOW UPGRADES ---------- */
.hero-subtitle {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.trust-section {
  padding: clamp(56px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(184,85,60,0.10), transparent 28%),
    linear-gradient(135deg, var(--paper), var(--bone));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.trust-cards, .quick-links, .fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.trust-card, .quick-links a, .fit-grid div, .policy-banner, .faq-side {
  background: rgba(255,254,251,.78);
  border: 1px solid var(--rule);
  border-radius: 22px;
  box-shadow: var(--shadow-s);
}
.trust-card, .fit-grid div {
  padding: 22px;
}
.trust-card strong, .quick-links strong, .fit-grid strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 8px;
}
.trust-card span, .quick-links span, .fit-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.faq-preview { background: var(--paper); }
.quick-links a {
  display: block;
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.quick-links a:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.stay-fit-section {
  background: linear-gradient(135deg, rgba(235,226,208,.72), rgba(255,254,251,.88));
  border-radius: 28px;
  padding: 28px !important;
  border: 1px solid var(--rule);
}
.subpage-hero {
  padding: clamp(74px, 10vw, 140px) 0 clamp(38px, 5vw, 72px);
  background:
    radial-gradient(circle at 80% 20%, rgba(200,155,107,.22), transparent 26%),
    var(--bone);
  text-align: center;
}
.subpage-hero .lede { max-width: 760px; margin: 22px auto 0; }
.faq-page, .policy-page { padding-top: 56px; background: var(--paper); }
.faq-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}
.faq-side {
  padding: 26px;
  position: sticky;
  top: 98px;
}
.faq-side p { color: var(--muted); font-size: 14px; margin: 10px 0 20px; }
.faq-list details {
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--bone);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 650;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; float: right; color: var(--clay); font-size: 22px; line-height: 1; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 15px;
}
.policy-banner {
  padding: 22px 26px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  background: linear-gradient(135deg, rgba(235,226,208,.85), rgba(255,254,251,.92));
}
.policy-grid.wide { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cta-strip {
  padding: clamp(42px, 6vw, 86px) 0;
  background: var(--ink);
  color: var(--bone);
  text-align: center;
}
.cta-strip p { color: rgba(245,239,229,.76); max-width: 620px; margin: 12px auto 24px; }
.cta-strip .btn-primary { background: var(--clay); color: var(--bone); }
@media (max-width: 980px) {
  .trust-grid, .faq-layout { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .policy-grid.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .trust-cards, .quick-links, .fit-grid, .policy-grid.wide { grid-template-columns: 1fr; }
  .stay-fit-section { padding: 22px !important; border-radius: 22px; }
}


/* V29 — premium guest picker */
.guest-field { gap: 8px; }
.guest-select-hidden {
  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;
}
.guest-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guest-picker-card {
  min-height: 58px;
  padding: 8px;
  border: 1px solid rgba(16,23,19,.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(190,151,91,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,253,248,.96), rgba(241,235,224,.78));
  box-shadow: 0 18px 40px rgba(25,24,19,.08);
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 10px;
}
.guest-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(16,23,19,.16);
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}
.guest-btn:hover { transform: translateY(-1px); }
.guest-btn:active { transform: translateY(0) scale(.98); }
.guest-btn:disabled {
  opacity: .28;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.guest-picker-value {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
}
.guest-picker-value [data-guest-count] {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.04em;
}
.guest-picker-value [data-guest-label] {
  font-size: 14px;
  color: var(--muted);
}
.guest-picker-note {
  font-size: 12px;
  color: var(--muted);
  padding-left: 4px;
}
@media (max-width: 640px) {
  .guest-picker-card {
    grid-template-columns: 44px 1fr 44px;
    border-radius: 20px;
  }
  .guest-btn { width: 40px; height: 40px; }
}


/* V55 — general area map styling (no exact pin) */
.location-block {
  border-radius: 28px !important;
  background: linear-gradient(135deg, rgba(237,228,210,.95), rgba(211,195,165,.78)) !important;
}
.location-block .map-vis {
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 54% 52%, rgba(188,85,60,.24), transparent 18%),
    radial-gradient(circle at 28% 62%, rgba(54,85,69,.16), transparent 42%),
    linear-gradient(135deg, #eadfc8 0%, #d5c5a4 100%) !important;
}
.location-block .map-vis::before,
.location-block .map-vis::after {
  opacity: .35;
}
.location-block .pin,
.location-block .area-pin {
  width: 86px !important;
  height: 86px !important;
  top: 42% !important;
  left: 45% !important;
  border: 2px solid rgba(188,85,60,.55) !important;
  background: rgba(188,85,60,.16) !important;
  box-shadow: 0 0 0 18px rgba(188,85,60,.08), 0 0 0 38px rgba(188,85,60,.045) !important;
  animation: none !important;
}
.location-block .pin::after,
.location-block .area-pin::after {
  content: "Approx. area";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7b3d27;
  background: rgba(255,253,248,.88);
  border: 1px solid rgba(188,85,60,.16);
  border-radius: 999px;
  padding: 5px 9px;
}
.map-label {
  border-radius: 20px !important;
  background: rgba(255,253,248,.90) !important;
}
.map-label strong {
  font-size: 20px !important;
}
.map-label span {
  color: var(--muted) !important;
}


/* V56 — cleaner general-area map cards */
.location-block {
  border-radius: 30px !important;
  padding: 28px !important;
  background: linear-gradient(135deg, #efe3cd 0%, #dbc8a6 100%) !important;
  box-shadow: 0 18px 55px rgba(16,23,19,.08) !important;
}

.location-block .map-vis {
  border-radius: 26px !important;
  min-height: 300px !important;
  background:
    radial-gradient(circle at 56% 54%, rgba(188,85,60,.18), transparent 21%),
    radial-gradient(circle at 52% 50%, rgba(188,85,60,.10), transparent 34%),
    linear-gradient(135deg, rgba(255,253,248,.28), rgba(188,168,130,.16)),
    linear-gradient(135deg, #eadfc8 0%, #d8c7a6 100%) !important;
}

.location-block .map-vis::before,
.location-block .map-vis::after {
  opacity: .26 !important;
}

.location-block .map-grid {
  opacity: .20 !important;
  background-size: 48px 48px !important;
}

.location-block .pin,
.location-block .area-pin {
  width: 72px !important;
  height: 72px !important;
  top: 46% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  border: 2px solid rgba(188,85,60,.48) !important;
  background: rgba(188,85,60,.13) !important;
  box-shadow:
    0 0 0 16px rgba(188,85,60,.07),
    0 0 0 34px rgba(188,85,60,.035) !important;
  animation: none !important;
}

.location-block .pin::after,
.location-block .area-pin::after {
  display: none !important;
}

.location-block .map-label {
  left: 20px !important;
  right: 20px !important;
  bottom: 20px !important;
  width: auto !important;
  max-width: 330px !important;
  border-radius: 22px !important;
  padding: 18px 20px !important;
  background: rgba(255,253,248,.94) !important;
  border: 1px solid rgba(16,23,19,.08) !important;
  box-shadow: 0 18px 38px rgba(16,23,19,.10) !important;
}

.location-block .map-label strong {
  font-size: clamp(20px, 2.2vw, 25px) !important;
  line-height: 1.08 !important;
  margin-bottom: 8px !important;
}

.location-block .map-label span {
  font-size: 13px !important;
  line-height: 1.35 !important;
  color: #697067 !important;
}

.location-block .map-label::before {
  content: "Approx. area";
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(188,85,60,.10);
  color: #8a442d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-block .dist {
  background: rgba(255,253,248,.72) !important;
  border: 1px solid rgba(16,23,19,.08) !important;
  border-radius: 26px !important;
  padding: 18px 22px !important;
}

.location-block .dist .row {
  padding: 14px 0 !important;
}

@media (max-width: 760px) {
  .location-block {
    padding: 18px !important;
  }
  .location-block .map-vis {
    min-height: 260px !important;
  }
  .location-block .map-label {
    left: 16px !important;
    right: 16px !important;
    max-width: none !important;
  }
}
