/* ═══════════════════════════════════════
   THE HEART OF CB — Modern Redesign
═══════════════════════════════════════ */

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

:root {
  --navy:       #0f1e3d;
  --navy2:      #162649;
  --navy3:      #1d3058;
  --gold:       #b8882a;
  --gold2:      #d4a44c;
  --gold-light: #f0d9a8;
  --sand:       #faf7f2;
  --sand2:      #f2ede3;
  --white:      #ffffff;
  --text:       #1a1f2e;
  --muted:      #6b7280;
  --muted2:     #9ca3af;
  --border:     #e8e3d8;
  --radius-sm:  6px;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 2px 8px rgba(15,30,61,.08);
  --shadow:     0 8px 32px rgba(15,30,61,.12);
  --shadow-lg:  0 20px 60px rgba(15,30,61,.18);
  --shadow-xl:  0 32px 80px rgba(15,30,61,.24);
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text); background: var(--white); line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--navy3); border-radius: 5px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
p  { color: var(--muted); line-height: 1.75; }
a  { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold2); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .75rem 1.6rem; border-radius: 50px; font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition); white-space: nowrap;
  letter-spacing: .01em; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,.12); opacity: 0; transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--navy); box-shadow: 0 4px 20px rgba(184,136,42,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,136,42,.45); }
.btn-white {
  background: rgba(255,255,255,.95); color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.btn-navy:hover { background: var(--navy3); transform: translateY(-2px); }
.btn-sm { padding: .5rem 1.1rem; font-size: .82rem; border-radius: 50px; }
.full-width { width: 100%; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 24px rgba(0,0,0,.10);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.99);
  box-shadow: 0 4px 32px rgba(0,0,0,.14);
  border-bottom-color: var(--gold2);
}
.nav-inner {
  max-width: 1340px; margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; height: 150px;
}
.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.pin-circle { display: inline-flex; align-items: center; justify-content: center; background: #ffffff; border-radius: 50%; flex-shrink: 0; }
.logo-pin  { height: 120px; width: auto; transition: transform var(--transition); }
.logo-pin:hover { transform: scale(1.06); }
@media (max-width: 900px) {
  .logo-pin { height: 48px; }
  .logo .pin-circle { width: 62px !important; height: 62px !important; }
  .nav-inner { height: 80px; }
  main { padding-top: 80px; }
}
.main-nav { display: flex; gap: .15rem; justify-content: center; margin-left: 0; }
.main-nav a {
  color: var(--navy); font-size: .9rem; font-weight: 600;
  padding: .55rem 1.1rem; border-radius: 8px; transition: all var(--transition);
  letter-spacing: .01em; position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold2); border-radius: 2px;
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--gold); background: rgba(184,136,42,.07); }
.main-nav a:hover::after { width: 60%; }
.btn-nav {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--navy); padding: .7rem 1.6rem; font-size: .9rem;
  border-radius: 50px; font-weight: 800; flex-shrink: 0; letter-spacing: .02em;
  transition: all var(--transition); box-shadow: 0 4px 18px rgba(184,136,42,.5);
  text-transform: uppercase;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(184,136,42,.65); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column; background: rgba(255,255,255,.99);
  padding: 1.4rem 2rem 2rem; gap: .1rem;
  border-top: 1px solid rgba(184,136,42,.3);
}
.mobile-menu a { color: var(--navy); padding: .85rem 0; font-size: 1rem; font-weight: 600; border-bottom: 1px solid rgba(15,30,61,.07); }
.mobile-menu .btn-nav { margin-top: 1rem; text-align: center; border-radius: 50px; display: block; padding: .9rem; }
.mobile-menu.open { display: flex; }

/* ── PAGES ── */
main { padding-top: 150px; }
.page { display: none; min-height: calc(100vh - 88px); animation: fadeIn .4s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ════════════════════════════
   HOME PAGE
════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative; min-height: 96vh;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,136,42,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(42,90,160,.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(15,30,61,.8) 0%, transparent 60%),
    linear-gradient(160deg, #0b1628 0%, #0f1e3d 40%, #162649 70%, #1a3060 100%);
  animation: heroShimmer 12s ease-in-out infinite alternate;
}
@keyframes heroShimmer {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(8deg) brightness(1.06); }
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative; z-index: 2;
  padding: 2rem 1.5rem; max-width: 820px; margin: 0 auto;
}
/* hero logo lockup */
.hero-logo-lockup {
  margin-bottom: 2rem;
  display: inline-block;
}
.hero-logo-img {
  height: 200px; width: auto;
  border-radius: 18px;
  box-shadow:
    0 0 0 6px rgba(184,136,42,.6),
    0 0 0 8px rgba(184,136,42,.2),
    0 24px 72px rgba(0,0,0,.65);
  animation: logoPop .9s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes logoPop {
  from { opacity: 0; transform: scale(.8) translateY(-16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-divider {
  width: 80px; height: 1.5px; margin: 0 auto 1.8rem;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
}
.hero h1 { color: var(--white); margin-bottom: 1.1rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.hero h1 span { color: var(--gold2); }
.hero-sub {
  color: rgba(255,255,255,.72); font-size: 1.1rem;
  max-width: 560px; margin: 0 auto 2.2rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold2); line-height: 1; }
.hero-stat .label { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; margin-top: .3rem; }

/* ── WHY BOOK DIRECT ── */
.perks-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.perk {
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  padding: 1.1rem 1.2rem; color: var(--navy); font-size: .84rem; font-weight: 500;
  border-right: 1px solid var(--border); transition: background var(--transition);
  text-align: center;
}
.perk:last-child { border-right: none; }
.perk:hover { background: var(--sand); }
.perk-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ── SECTION ── */
.section { max-width: 1280px; margin: 0 auto; padding: 6rem 2rem; }
.section.narrow { max-width: 880px; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
}
.section-title { margin-bottom: .7rem; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 540px; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── HOME 4 TILES ── */
.home-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.home-tile { background: var(--white); border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow); border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.home-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.home-tile-media { height: 200px; display: flex; align-items: center; justify-content: center; border-bottom: 3px solid var(--gold); }
.ht-navy { background: var(--navy); }
.ht-pin { width: 85px; height: auto; filter: drop-shadow(0 4px 14px rgba(0,0,0,.35)); }
.home-tile-body { padding: 1.4rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.ht-title { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--navy); letter-spacing: .01em; }
.ht-desc { font-size: .87rem; color: var(--muted); line-height: 1.6; flex: 1; }
.ht-cta { display: inline-block; color: var(--gold2); font-weight: 700; font-size: .85rem; letter-spacing: .02em; margin-top: .3rem; }
@media (max-width: 900px) { .home-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .home-tiles { grid-template-columns: 1fr; } }

/* ── PROPERTY GRID ── */
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.property-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--white);
  cursor: pointer; transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.property-img {
  position: relative; height: 240px; overflow: hidden;
}
.property-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.property-card:hover .property-img img { transform: scale(1.06); }
.prop-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 50%, #224070 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
}
.prop-placeholder .prop-icon { font-size: 3rem; opacity: .5; }
.prop-placeholder .prop-label { font-size: .78rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.property-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--navy); padding: .3rem .75rem;
  border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase;
}
.property-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.property-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.property-meta { font-size: .8rem; color: var(--muted2); margin-bottom: .7rem; }
.property-desc { font-size: .88rem; color: var(--muted); margin-bottom: 1.1rem; line-height: 1.65; }
.property-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: auto; }
.price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.price sub { font-size: .72rem; font-family: 'Inter', sans-serif; font-weight: 400; color: var(--muted); vertical-align: middle; }

/* ── SERVICE CARDS (row 2 of property-grid) ── */
.service-card-img {
  display: flex; align-items: center; justify-content: center;
}
.service-card-consulting { background: linear-gradient(135deg, #0f2a4a 0%, #1a3a5c 100%); }
.service-card-guidebook  { background: linear-gradient(135deg, #0d3b2e 0%, #155840 100%); }
.service-card-shop       { background: linear-gradient(135deg, #3a2208 0%, #5c3610 100%); }
.service-card-icon { font-size: 5rem; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--sand); border-radius: var(--radius);
  padding: 1.8rem; border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: .95rem; margin-bottom: .8rem; letter-spacing: .1em; }
.review-text { font-size: .92rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.reviewer { font-size: .78rem; font-weight: 600; color: var(--muted2); text-transform: uppercase; letter-spacing: .08em; }

/* ══════════════════
   STAY PAGE
══════════════════ */
.page-hero {
  position: relative; padding: 6rem 2rem 4rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy3) 100%);
  text-align: center; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(184,136,42,.15) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin: 0; }
.stay-hero-pin-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.92); border-radius: 50%;
  width: 180px; height: 180px; margin-bottom: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.stay-hero-pin { height: 150px; width: auto; }
.bb-rating { font-weight: 700; color: var(--gold); margin-right: .4rem; font-size: .9rem; }
.stay-hero-address { font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold2) !important; margin-bottom: .5rem !important; }
.stay-hero-tagline { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 700; color: var(--white) !important; line-height: 1.1; margin: 0 !important; }
.gold-hero { background: linear-gradient(160deg, var(--navy) 0%, #1a3060 100%); }

.property-detail-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem;
  align-items: start; padding: 4rem 0; border-bottom: 1px solid var(--border);
}
.property-detail-card:last-child { border-bottom: none; }
.property-detail-card.reverse { grid-template-columns: 1fr 1.1fr; }
.property-detail-card.reverse .pd-images { order: 2; }
.property-detail-card.reverse .pd-info { order: 1; }
.pd-main {
  border-radius: var(--radius-lg); overflow: hidden; height: 380px;
  margin-bottom: .75rem; position: relative;
}
.pd-main .prop-placeholder { height: 100%; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.pd-thumb {
  border-radius: var(--radius-sm); overflow: hidden; height: 76px;
  background: linear-gradient(135deg, var(--navy2), var(--navy3)); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; opacity: .6; transition: opacity var(--transition);
}
.pd-thumb:hover { opacity: 1; }
.pd-badge {
  display: inline-block; padding: .32rem .8rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .8rem;
  background: var(--gold); color: var(--navy);
}
.pd-badge.teal { background: #0d9488; color: #fff; }
.pd-badge.slate { background: #475569; color: #fff; }
.pd-info h2 { color: var(--navy); margin-bottom: .6rem; }
.pd-specs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }
.pd-spec { background: var(--sand); border: 1px solid var(--border); padding: .32rem .8rem; border-radius: 50px; font-size: .8rem; color: var(--text); font-weight: 500; }
.pd-info > p { font-size: .95rem; margin-bottom: 1.4rem; }
.amenities h4 { color: var(--muted); margin-bottom: .7rem; }
.amenity-grid { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.5rem; }
.amenity-grid span { background: var(--sand); border: 1px solid var(--border); padding: .3rem .75rem; border-radius: 50px; font-size: .8rem; color: var(--text); }
.pd-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.pd-price { font-size: .88rem; color: var(--muted); }
.pd-price strong { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); font-weight: 700; }

/* ══════════════════
   BOOKING PAGE
══════════════════ */
.booking-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 4rem; align-items: start; }
.booking-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.booking-form-wrap h2 { margin-bottom: .3rem; }
.form-sub { font-size: .9rem; color: var(--muted); margin-bottom: 1.8rem; }
.booking-form, .contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: .92rem; font-family: inherit; color: var(--text); background: var(--sand);
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,136,42,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sidebar-card { background: var(--sand); border-radius: var(--radius); padding: 1.6rem; margin-bottom: 1.2rem; border: 1px solid var(--border); }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--navy); }
.navy-card { background: var(--navy); border-color: transparent; }
.navy-card h3 { color: var(--white); }
.navy-card p { color: rgba(255,255,255,.7); font-size: .88rem; }
.benefit-list, .policy-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.benefit-list li { font-size: .87rem; color: var(--text); }
.policy-list li { font-size: .87rem; color: rgba(255,255,255,.7); }
.contact-links { display: flex; flex-direction: column; gap: .55rem; margin-top: .7rem; }
.contact-links a { color: rgba(255,255,255,.75); font-size: .88rem; transition: color var(--transition); }
.contact-links a:hover { color: var(--white); }
.booking-confirmation { text-align: center; padding: 2.5rem; background: #f0fdf4; border-radius: var(--radius); border: 1px solid #86efac; }
.booking-confirmation h3 { color: #15803d; font-size: 1.4rem; }
.confirm-icon { font-size: 3rem; margin-bottom: .8rem; }
.confirm-msg { text-align: center; padding: 1.2rem; background: #f0fdf4; border-radius: var(--radius); border: 1px solid #86efac; font-size: .92rem; color: #15803d; font-weight: 600; }
.hidden { display: none; }

/* ══════════════════
   EXPLORE PAGE
══════════════════ */
.guide-intro { font-size: 1.05rem; color: var(--muted); max-width: 660px; margin: 0 auto 3rem; text-align: center; }
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.guide-category { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }
.guide-cat-header { background: var(--navy); color: var(--white); padding: 1rem 1.4rem; font-weight: 600; font-size: .95rem; display: flex; align-items: center; gap: .5rem; }
.guide-items { divide-y: 1px solid var(--border); }
.guide-item { padding: 1rem 1.4rem; border-bottom: 1px solid var(--border); transition: background var(--transition); }
.guide-item:last-child { border-bottom: none; }
.guide-item:hover { background: var(--sand); }
.gi-name { font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: .2rem; }
.gi-desc { font-size: .83rem; color: var(--muted); margin-bottom: .35rem; }
.gi-tag { font-size: .72rem; color: var(--gold); font-weight: 700; background: rgba(184,136,42,.1); padding: .15rem .55rem; border-radius: 50px; display: inline-block; border: 1px solid rgba(184,136,42,.2); }

/* ══════════════════
   CONSULTING PAGE
══════════════════ */
.consulting-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.consulting-intro-text h2 { margin-bottom: 1rem; }
.consulting-intro-text p { margin-bottom: .9rem; }
.consulting-intro-text .btn { margin-top: .5rem; }
.consulting-intro-img { border-radius: var(--radius-lg); overflow: hidden; height: 360px; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 4rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem; transition: all var(--transition); position: relative;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(184,136,42,.3); }
.sc-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--navy); margin-bottom: .5rem; font-size: 1.05rem; }
.service-card p { font-size: .86rem; }
.sc-price { display: none; }
.process-section { background: var(--sand); border-radius: var(--radius-lg); padding: 3.5rem; margin-bottom: 4rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 1.5rem; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem);
  height: 1px; background: linear-gradient(90deg, var(--gold) 0%, rgba(184,136,42,.2) 100%);
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--gold); font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; border: 2px solid var(--gold); position: relative; z-index: 1;
}
.process-step h3 { font-size: .98rem; color: var(--navy); margin-bottom: .4rem; }
.process-step p { font-size: .83rem; }
.consulting-contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  border-radius: var(--radius-lg); padding: 3.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.consulting-contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184,136,42,.15) 0%, transparent 60%);
}
.consulting-contact h2 { color: var(--white); position: relative; margin-bottom: .5rem; }
.consulting-contact > p { color: rgba(255,255,255,.7); position: relative; margin-bottom: 2rem; }
.consulting-contact .contact-form { text-align: left; max-width: 600px; margin: 0 auto; position: relative; }
.consulting-contact .form-group label { color: rgba(255,255,255,.8); }
.consulting-contact .form-group input,
.consulting-contact .form-group select,
.consulting-contact .form-group textarea { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; }
.consulting-contact .form-group input::placeholder,
.consulting-contact .form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.consulting-contact .form-group input:focus,
.consulting-contact .form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.12); box-shadow: 0 0 0 3px rgba(184,136,42,.15); }

/* ══════════════════
   GUIDEBOOK PAGE
══════════════════ */
.guidebook-intro { font-size: 1.02rem; color: var(--muted); max-width: 660px; margin: 0 auto 3rem; text-align: center; }
.guidebook-sections { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 3rem; }
.gb-section { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }
.gb-section-header {
  background: var(--navy); color: var(--white); padding: 1.1rem 1.6rem;
  font-weight: 600; font-size: .95rem; display: flex; align-items: center; gap: .5rem;
}
.gb-content { display: grid; grid-template-columns: repeat(2, 1fr); }
.gb-item { padding: 1.3rem 1.6rem; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); transition: background var(--transition); }
.gb-item:nth-child(2n) { border-right: none; }
.gb-item:nth-last-child(-n+2) { border-bottom: none; }
.gb-item:hover { background: var(--sand); }
.gb-item h4 { color: var(--navy); font-family: 'Inter', sans-serif; margin-bottom: .35rem; font-size: .85rem; }
.gb-item p { font-size: .85rem; margin: 0; }
.guidebook-cta {
  background: var(--navy); border-radius: var(--radius-lg); padding: 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.guidebook-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(184,136,42,.14) 0%, transparent 70%);
}
.guidebook-cta h3 { color: var(--white); font-size: 1.6rem; margin-bottom: .5rem; position: relative; }
.guidebook-cta p { color: rgba(255,255,255,.7); margin-bottom: 1.4rem; position: relative; }

/* ══════════════════
   SHOP PAGE
══════════════════ */
.shop-tabs {
  display: flex; gap: .5rem; margin-bottom: 2.5rem; flex-wrap: wrap;
  border-bottom: 1.5px solid var(--border); padding-bottom: 0;
}
.shop-tab {
  background: none; border: none; padding: .8rem 1.5rem; font-size: .88rem;
  font-weight: 600; cursor: pointer; color: var(--muted); font-family: inherit;
  border-bottom: 2.5px solid transparent; margin-bottom: -1.5px; transition: all var(--transition);
}
.shop-tab:hover { color: var(--navy); }
.shop-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.shop-section { display: none; }
.shop-section.active { display: block; }
.shop-section-desc { color: var(--muted); margin-bottom: 2rem; font-size: .95rem; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.product-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img { height: 190px; }
.product-img .prop-placeholder { height: 100%; }
.product-body { padding: 1.1rem 1.2rem 1.3rem; }
.product-body h4 { font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.product-body p { font-size: .82rem; margin-bottom: .9rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.cart-drawer {
  background: var(--sand); border-radius: var(--radius); padding: 1.6rem;
  border: 1px solid var(--border); margin-top: 2rem;
}
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cart-header h3 { font-size: 1rem; color: var(--navy); }
.cart-header button { background: none; border: none; color: var(--muted); cursor: pointer; font-size: .82rem; font-family: inherit; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.cart-item button { background: none; border: none; cursor: pointer; color: var(--muted2); font-size: .85rem; }
.cart-footer { margin-top: 1rem; }
.cart-note { font-size: .8rem; color: var(--muted); text-align: center; margin-bottom: .9rem; background: #fff8eb; padding: .75rem; border-radius: 8px; border: 1px solid rgba(184,136,42,.2); }

/* ══════════════════
   ABOUT PAGE
══════════════════ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; }
/* ── PIN BRAND ACCENT ── */
.pin-accent { height: 44px; width: auto; display: inline-block; vertical-align: middle; margin-right: .6rem; }
.pin-accent-sm { height: 32px; width: auto; display: inline-block; vertical-align: middle; margin-right: .4rem; }

.host-stats-card { display: flex; gap: 1.5rem; background: var(--sand); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem 1.6rem; margin-bottom: 1.4rem; }
.hsc-stat { text-align: center; flex: 1; }
.hsc-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.hsc-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted2); margin-top: .2rem; }
.host-facts { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .8rem; margin-top: 1.2rem; }
.hf-item { font-size: .85rem; color: var(--muted); }
.about-img { border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
.about-img .prop-placeholder { height: 100%; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.value-item { background: var(--sand); border-radius: var(--radius); padding: 1.3rem; text-align: center; border: 1px solid var(--border); }
.value-icon { font-size: 2rem; margin-bottom: .6rem; }
.value-item h4 { font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; text-transform: none; letter-spacing: 0; }
.value-item p { font-size: .82rem; margin: 0; }
.contact-section h2 { margin-bottom: 1.5rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 2.5rem; }
.contact-block { background: var(--sand); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); }
.contact-block h3 { font-size: .95rem; color: var(--navy); margin-bottom: .7rem; }
.contact-block p { font-size: .87rem; margin-bottom: .3rem; }

/* ══════════════════
   FOOTER
══════════════════ */
.site-footer { background: var(--navy); padding: 0 0 1.5rem; }
.footer-brand-banner {
  background: #fff; width: 100%; padding: 1.4rem 2.5rem;
  display: flex; align-items: center; gap: 1.4rem;
  border-bottom: 3px solid var(--gold);
}
.footer-logo { height: 90px; width: auto; flex-shrink: 0; }
.footer-brand-text { display: flex; flex-direction: column; gap: .18rem; }
.fbb-line1 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.fbb-line2 { font-size: .88rem; font-weight: 600; color: var(--navy); }
.fbb-line3 { font-size: .8rem; color: #666; }
.fbb-line4 { font-size: .8rem; color: #555; margin-top: .1rem; }
.fbb-line4 a { color: var(--navy); font-weight: 600; text-decoration: none; }
.fbb-line4 a:hover { color: var(--gold); }
.consult-contact-direct { text-align: center; margin: 1.2rem 0 .8rem; }
.consult-phone-btn { display: inline-block; font-size: 1.1rem; font-weight: 700; color: var(--navy); background: var(--sand); border: 2px solid var(--gold); border-radius: 50px; padding: .7rem 2rem; text-decoration: none; transition: all var(--transition); }
.consult-phone-btn:hover { background: var(--gold); color: #fff; }
.consult-form-note { font-size: .85rem; color: var(--muted2); margin-top: .6rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 2.8rem 2.5rem 1rem; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: .55rem; }
.footer-col h4 { color: rgba(255,255,255,.9); font-family: 'Inter', sans-serif; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .4rem; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold2); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: .5rem;
}

/* ══════════════════════════════════
   PROPERTY LISTING PAGES
══════════════════════════════════ */

/* Fallback placeholder inside photo slots */
.pp-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 50%, #224070 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
}
.pp-fallback span { font-size: 2.5rem; opacity: .5; }
.pp-fallback p { font-size: .78rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .09em; margin: 0; }

/* Guest Favorite badge on cards */
.gf-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  background: rgba(184,136,42,.12); color: var(--gold);
  padding: .28rem .7rem; border-radius: 50px; border: 1px solid rgba(184,136,42,.2);
  margin-bottom: .5rem;
}
.gf-icon { font-size: .85rem; }

/* Rating pill overlaid on card image */
.prop-rating-pill {
  position: absolute; bottom: .9rem; right: .9rem;
  background: rgba(255,255,255,.95); color: var(--navy);
  padding: .28rem .7rem; border-radius: 50px;
  font-size: .76rem; font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

/* Amenity chips on cards */
.property-amenity-chips {
  display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1rem;
}
.property-amenity-chips span {
  font-size: .73rem; background: var(--sand); border: 1px solid var(--border);
  padding: .22rem .6rem; border-radius: 50px; color: var(--text);
}

/* Airbnb strip below grid */
.airbnb-strip {
  display: flex; align-items: center; gap: .8rem; justify-content: center;
  margin-top: 2rem; flex-wrap: wrap; font-size: .85rem; color: var(--muted);
}

/* ── LISTING HERO ── */
.listing-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy3) 100%);
  padding: 4rem 2rem 2.5rem;
  position: relative; overflow: hidden;
}
.listing-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(184,136,42,.15) 0%, transparent 70%);
}
.listing-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.listing-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.listing-gf {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(184,136,42,.2); color: var(--gold2);
  font-size: .73rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 50px; border: 1px solid rgba(184,136,42,.3);
  margin-bottom: .65rem;
}
.listing-h1 { color: var(--white); font-size: clamp(1.5rem, 3.5vw, 2.4rem); margin-bottom: .6rem; }
.listing-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; color: rgba(255,255,255,.75); font-size: .86rem; }
.listing-stars { color: var(--gold2); font-weight: 700; }
.listing-reviews-link { color: rgba(255,255,255,.75); text-decoration: underline; text-underline-offset: 2px; }
.listing-dot { color: rgba(255,255,255,.3); }
.listing-share-row { flex-shrink: 0; }

/* ── PHOTO GRID (Airbnb-style 5-up) ── */
.photo-grid-5 {
  display: grid; max-width: 1200px; margin: 0 auto;
  height: 460px; gap: 4px;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
}
.pg-main { grid-column: 1; grid-row: 1 / 3; }
.pg-tr   { grid-column: 2; grid-row: 1; }
.pg-br   { grid-column: 2; grid-row: 2; }
.pg-mr   { grid-column: 3; grid-row: 1; }
.pg-far  { grid-column: 3; grid-row: 2; }

.photo-slot { position: relative; overflow: hidden; }
.photo-slot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.photo-slot:hover img { transform: scale(1.04); }
.photo-placeholder {
  display: none; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  align-items: center; justify-content: center; flex-direction: column; gap: .5rem;
}
.photo-placeholder span { font-size: 2rem; opacity: .4; }
.photo-placeholder p { font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin: 0; }
/* show when img errors (JS-free fallback via onerror) */
.photo-placeholder.shown,
.photo-slot img[style*="display: none"] + .photo-placeholder { display: flex; }

/* ── LISTING BODY ── */
.listing-body {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 4rem; max-width: 1200px; margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.listing-main { min-width: 0; }

.listing-specs-row {
  display: flex; flex-wrap: wrap; gap: .4rem;
  font-size: .9rem; color: var(--text); margin-bottom: 2rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
}

.listing-highlights { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.highlight-item { display: flex; gap: 1rem; align-items: flex-start; }
.hi-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.highlight-item strong { font-size: .92rem; color: var(--text); display: block; margin-bottom: .15rem; }
.highlight-item span { font-size: .84rem; color: var(--muted); }

.listing-desc { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.listing-desc h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1rem; }
.listing-desc p { font-size: .93rem; color: var(--muted); margin-bottom: .8rem; }

.listing-sleep { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.listing-sleep h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.2rem; }
.sleep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sleep-card { background: var(--sand); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.sleep-img { height: 130px; position: relative; overflow: hidden; }
.sleep-img img { width: 100%; height: 100%; object-fit: cover; }
.sleep-card strong { display: block; font-size: .88rem; color: var(--navy); padding: .7rem 1rem .15rem; }
.sleep-card span { display: block; font-size: .8rem; color: var(--muted); padding: 0 1rem .8rem; }

.listing-amenities { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.listing-amenities h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.2rem; }
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.amenity-item { display: flex; align-items: center; gap: .7rem; font-size: .88rem; color: var(--text); padding: .5rem 0; border-bottom: 1px solid var(--border); }
.am-icon { font-size: 1.1rem; flex-shrink: 0; }

.listing-reviews { margin-bottom: 2rem; }
.listing-reviews h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.2rem; }
.review-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ── BOOKING SIDEBAR WIDGET ── */
.listing-sidebar { position: sticky; top: calc(72px + 2rem); align-self: start; }
.booking-widget {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem;
  box-shadow: var(--shadow-xl); margin-bottom: 1.2rem;
}
.bw-header { margin-bottom: 1.2rem; }
.bw-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.bw-price span { font-family: 'Inter', sans-serif; font-size: .83rem; color: var(--muted); font-weight: 400; }
.bw-rating { font-size: .83rem; color: var(--muted); margin-top: .2rem; }
.bw-rating a { color: var(--text); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.bw-form { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1rem; }
.bw-dates {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden;
}
.bw-date { display: flex; flex-direction: column; padding: .6rem .85rem; border-right: 1px solid var(--border); }
.bw-date:last-child { border-right: none; }
.bw-date label { font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: .2rem; }
.bw-date input { border: none; padding: 0; font-size: .88rem; background: transparent; color: var(--text); font-family: inherit; -webkit-appearance: none; }
.bw-date input:focus { outline: none; }

.bw-guests {
  border: 1.5px solid var(--border); border-radius: 10px; padding: .6rem .85rem;
}
.bw-guests label { display: block; font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: .2rem; }
.bw-guests select { border: none; padding: 0; font-size: .88rem; background: transparent; color: var(--text); font-family: inherit; width: 100%; -webkit-appearance: none; cursor: pointer; }
.bw-guests select:focus { outline: none; }

.bw-btn { border-radius: 10px; padding: 1rem; font-size: .95rem; }
.bw-nofee { font-size: .78rem; color: var(--muted); text-align: center; }
.bw-confirm { font-size: .85rem; color: #15803d; font-weight: 600; text-align: center; padding: .7rem; background: #f0fdf4; border-radius: 8px; margin-top: .5rem; }
.bw-divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.bw-airbnb-link { display: block; text-align: center; font-size: .82rem; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; transition: color var(--transition); }
.bw-airbnb-link:hover { color: var(--navy); }

.bw-highlights-card {
  background: var(--sand); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem; display: flex; flex-direction: column; gap: .6rem;
}
.bwh-item { font-size: .85rem; color: var(--text); font-weight: 500; }

/* responsive listing */
@media (max-width: 1000px) {
  .listing-body { grid-template-columns: 1fr; }
  .listing-sidebar { position: static; }
  .photo-grid-5 { height: 320px; }
  .review-cols { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .photo-grid-5 { height: 240px; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr 1fr; }
  .pg-main { grid-column: 1 / 3; grid-row: 1 / 2; }
  .pg-tr  { grid-column: 1; grid-row: 2; }
  .pg-br  { grid-column: 2; grid-row: 2; }
  .pg-mr  { grid-column: 1; grid-row: 3; }
  .pg-far { grid-column: 2; grid-row: 3; }
  .amenity-list { grid-template-columns: 1fr; }
  .sleep-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   AVAILABILITY CALENDAR + PRICING
══════════════════════════════════ */
.avail-layout {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3rem; margin-bottom: 4rem; align-items: start;
}

/* Property tab switcher */
.avail-tabs { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: .8rem; }
.avail-tab {
  padding: .5rem 1.1rem; border-radius: 50px; font-size: .83rem; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--white); color: var(--muted);
  cursor: pointer; font-family: inherit; transition: all var(--transition);
}
.avail-tab.active  { background: var(--navy); color: var(--white); border-color: var(--navy); }
.avail-tab:hover:not(.active) { border-color: var(--navy); color: var(--navy); }

/* Prev/Next buttons */
.cal-nav-row { display: flex; gap: .5rem; margin-bottom: 1rem; }
.cal-nav-btn {
  padding: .38rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--white); color: var(--navy);
  cursor: pointer; font-family: inherit; transition: all var(--transition);
}
.cal-nav-btn:hover { background: var(--sand); }

/* Month stacked list */
.cal-wrap { display: flex; flex-direction: column; gap: 1rem; }
.cal-loading { color: var(--muted); font-size: .9rem; padding: 2rem 0; }

.cal-month { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cal-month-hd {
  background: var(--navy); color: var(--white); padding: .75rem 1.2rem;
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
}

.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: .5rem; gap: 2px;
}
.cal-day-header {
  text-align: center; font-size: .65rem; font-weight: 700;
  color: var(--muted2); text-transform: uppercase; padding: .3rem 0;
}
.cal-day {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: .3rem .15rem; border-radius: 6px; gap: 2px; min-height: 40px;
  transition: background var(--transition);
}
.cal-day.empty { background: none; pointer-events: none; }
.cal-num { font-size: .82rem; font-weight: 600; line-height: 1; }
.cal-past .cal-num { color: var(--muted2); }
.cal-booked .cal-num { color: var(--muted2); }
.cal-avail .cal-num { color: var(--text); }
.cal-avail:hover { background: rgba(22,163,74,.1); cursor: pointer; }
/* Orphan night: single free night sandwiched between 2 bookings — 1-night min exception */
.cal-orphan { cursor: pointer; position: relative; }
.cal-orphan .cal-num { color: var(--text); }
.cal-orphan .cal-dot-sm { background: var(--gold); box-shadow: 0 0 0 2px rgba(184,136,42,.35); }
.cal-orphan:hover { background: rgba(184,136,42,.15); }
/* In choosing mode, eligible overrides gold → green; blocked overrides gold → grey */
.cal-choosing-checkout .cal-orphan.cal-checkout-eligible .cal-dot-sm { background: #16a34a !important; box-shadow: 0 0 0 2px rgba(22,163,74,.25) !important; }
.cal-choosing-checkout .cal-orphan.cal-checkout-blocked .cal-dot-sm { background: #cbd5e1 !important; box-shadow: none !important; }
.cal-orphan .cal-dot-sm { background: var(--gold) !important; }

/* Eligible checkout: bright green dot + pointer */
.cal-checkout-eligible { cursor: pointer; }
.cal-checkout-eligible .cal-dot-sm { background: #16a34a !important; box-shadow: 0 0 0 2px rgba(22,163,74,.25) !important; }
.cal-checkout-eligible .cal-num { color: var(--text) !important; }
.cal-checkout-eligible:hover { background: rgba(22,163,74,.15) !important; }

/* firstWall day (booked but eligible back-to-back checkout): show green overriding red */
.cal-checkout-eligible.cal-booked .cal-dot-sm { background: #16a34a !important; box-shadow: 0 0 0 2px rgba(22,163,74,.25) !important; }
.cal-checkout-eligible.cal-booked .cal-num { color: var(--text) !important; }

/* Blocked: not-allowed cursor always; grey dot ONLY when actively in choosing mode */
.cal-checkout-blocked { cursor: not-allowed !important; }
.cal-checkout-blocked:hover { background: none !important; }
.cal-choosing-checkout .cal-checkout-blocked .cal-dot-sm { background: #cbd5e1 !important; box-shadow: none !important; }
.cal-choosing-checkout .cal-checkout-blocked .cal-num { color: #94a3b8 !important; }

/* Choosing mode: dim non-eligible avail days before check-in too */
.cal-choosing-checkout .cal-avail:not(.cal-checkout-eligible):hover { background: none !important; cursor: not-allowed !important; }

/* One-night (kept for tooltip only, now also maps to checkout-blocked visually) */
.cal-one-night { position: relative; cursor: not-allowed; }

/* Saturday: always blocked — red hover, cursor */
.cal-saturday:not(.cal-past):not(.cal-orphan):hover { background: rgba(239,68,68,.12) !important; cursor: not-allowed !important; }
/* Tooltips are handled by the global JS tooltip in app.js (position: fixed, never clipped) */

/* Date selection states */
.cal-sel-start, .cal-sel-end {
  background: var(--navy) !important; border-radius: 8px;
}
.cal-sel-start .cal-num, .cal-sel-end .cal-num { color: var(--white) !important; }
.cal-sel-start .cal-dot-sm, .cal-sel-end .cal-dot-sm { background: var(--gold2) !important; }
.cal-in-range { background: rgba(184,136,42,.12); border-radius: 0; }
.cal-in-range .cal-num { color: var(--navy); }

/* Error and selection summary */
.cal-error {
  background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626;
  border-radius: 8px; padding: .7rem 1rem; font-size: .82rem;
  font-weight: 600; margin-bottom: .8rem;
}
.cal-selection {
  background: #f0fdf4; border: 1px solid #86efac; color: #15803d;
  border-radius: 8px; padding: .7rem 1rem; font-size: .84rem;
  font-weight: 600; margin-bottom: .8rem;
}

.cal-dot-sm { width: 9px; height: 9px; border-radius: 50%; display: block; }
.cal-avail  .cal-dot-sm { background: #16a34a; box-shadow: 0 0 0 2px rgba(22,163,74,.2); }
.cal-booked .cal-dot-sm { background: #dc2626; box-shadow: 0 0 0 2px rgba(220,38,38,.2); }
.cal-past   .cal-dot-sm { background: var(--border); }

/* ── Mini calendar on stay page ── */
.stay-cal-col .cal-day { min-height: 26px; padding: .1rem .04rem; gap: 1px; }
.stay-cal-col .cal-num { font-size: .6rem; }
.stay-cal-col .cal-dot-sm { width: 5px; height: 5px; border-radius: 50%; }
.stay-cal-col .cal-dows span { font-size: .55rem; padding: .12rem 0; }
.stay-cal-col .cal-month-hd { padding: .45rem .6rem .3rem; }
.stay-cal-col .cal-month-label { font-size: .82rem; }
.stay-cal-col .cal-grid { gap: 1px; }

/* ── Calendar / Timeline sliding toggle ── */
.cal-toggle-wrap {
  display: flex; justify-content: center; padding: 1rem 0 .8rem;
  background: transparent;
  pointer-events: none;
}
.cal-toggle-wrap > * { pointer-events: auto; }
.cal-toggle-track {
  position: relative; display: flex; align-items: center;
  background: var(--sand); border: 2px solid var(--navy); box-shadow: 0 2px 10px rgba(0,0,0,.12);
  border-radius: 30px; padding: 4px; gap: 0;
}
.cal-toggle-slider {
  position: absolute; top: 4px; left: 4px;
  height: calc(100% - 8px); width: calc(50% - 4px);
  background: var(--gold); border-radius: 24px;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.cal-toggle-track.tl-active .cal-toggle-slider { transform: translateX(100%); }
.cal-toggle-opt {
  position: relative; z-index: 1; border: none; background: transparent;
  padding: .55rem 1.5rem; font-weight: 700; font-size: .85rem;
  border-radius: 24px; cursor: pointer; transition: color .2s; white-space: nowrap; color: var(--muted);
}
.cal-toggle-opt.active { color: var(--navy); }

/* ── Timeline view ── */
.tl-view { overflow-x: auto; overflow-y: visible; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: var(--radius); }
.tl-inner { display: inline-block; min-width: 100%; }
.tl-row { display: flex; align-items: stretch; border-bottom: 1px solid var(--border); }
.tl-mrow { background: var(--navy); }
.tl-drow { background: var(--sand); border-bottom: 2px solid var(--gold); }
.tl-lbl { flex-shrink: 0; position: sticky; left: 0; z-index: 10; }
.tl-mrow .tl-lbl { background: var(--navy); }
.tl-drow .tl-lbl { background: var(--sand); }
.tl-mhd { display: flex; align-items: center; padding: .35rem .5rem; font-size: .72rem; font-weight: 700; color: var(--gold2); border-left: 1px solid rgba(255,255,255,.12); flex-shrink: 0; white-space: nowrap; overflow: hidden; }
.tl-dhd { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: .2rem 0; flex-shrink: 0; gap: 1px; border-left: 1px solid var(--border); }
.tl-dhd span { font-size: .5rem; text-transform: uppercase; color: var(--muted); }
.tl-dhd strong { font-size: .68rem; font-weight: 700; color: var(--text); }
.tl-dhd-today { background: rgba(184,136,42,.15); }
.tl-dhd-today strong { color: var(--gold2); }
.tl-dhd-wkd { background: rgba(0,0,0,.04); }
.tl-prop-row { display: flex; align-items: stretch; border-bottom: 1px solid var(--border); background: var(--white); }
.tl-plbl { background: var(--white); display: flex; flex-direction: column; justify-content: center; padding: 0 .7rem; border-right: 2px solid var(--gold); z-index: 20; gap: .15rem; }
.tl-pname { font-size: .75rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.tl-prate { font-size: .65rem; color: var(--gold2); }
.tl-cells { display: flex; flex: 1; }
.tl-cell { flex-shrink: 0; height: 46px; border-right: 1px solid var(--border); box-sizing: border-box; position: relative; }
/* Timeline cells — all white/transparent, dot-only (mirrors monthly calendar) */
.tl-c-past  { background: #f8f8f8; }
.tl-c-avail { background: #fff; }
.tl-c-booked { background: #fff; }
.tl-c-orphan { background: #fff; }
.tl-c-wkd  { background: #fafaf8; }
.tl-c-today { box-shadow: inset 0 0 0 2px var(--gold); }

/* Timeline dots */
.tl-cell { display: flex; align-items: center; justify-content: center; cursor: pointer; }
.tl-c-past { cursor: default; }
.tl-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 4px rgba(0,0,0,.15); }
.tl-c-avail .tl-dot  { background: #16a34a; box-shadow: 0 0 5px rgba(22,163,74,.4); }
.tl-c-booked .tl-dot { background: #dc2626; box-shadow: 0 0 5px rgba(220,38,38,.35); }
.tl-c-orphan .tl-dot { background: var(--gold); box-shadow: 0 0 5px rgba(184,136,42,.45); }
.tl-c-past .tl-dot   { background: #cbd5e1; box-shadow: none; }
/* Timeline choosing mode — square shapes to match monthly calendar */
.tl-sel-start, .tl-sel-end { background: var(--navy) !important; border-radius: 6px; }
.tl-sel-start .tl-dot, .tl-sel-end .tl-dot { background: var(--gold) !important; box-shadow: none !important; }
.tl-eligible .tl-dot  { background: #16a34a !important; box-shadow: 0 0 5px rgba(22,163,74,.4) !important; }
.tl-eligible  { cursor: pointer !important; }
.tl-blocked .tl-dot   { background: #cbd5e1 !important; box-shadow: none !important; }
.tl-blocked   { cursor: not-allowed !important; }
.tl-blocked:hover { background: none !important; }
.tl-in-range  { background: rgba(184,136,42,.1); }
.tl-c-booked.tl-eligible .tl-dot { background: #16a34a !important; box-shadow: 0 0 5px rgba(22,163,74,.4) !important; }

/* Timeline tooltips handled by global JS tooltip in app.js */

/* Legend */
.cal-legend {
  display: flex; gap: 1.2rem; align-items: center; margin-top: .8rem;
  font-size: .8rem; color: var(--muted); flex-wrap: wrap;
}
.cal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; vertical-align: middle; margin-right: .3rem; }
.cal-dot-avail  { background: #16a34a; }
.cal-dot-booked { background: #dc2626; }
.cal-dot-past   { background: var(--border); border: 1px solid var(--muted2); }
.cal-note { font-size: .74rem; color: var(--muted2); margin-top: .5rem; }

/* Pricing card */
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  position: sticky; top: calc(88px + 1.5rem);
}
.pricing-hd { padding: 1.2rem 1.4rem .6rem; border-bottom: 1px solid var(--border); }
.pricing-hd h3 { color: var(--navy); font-size: 1.05rem; margin-top: .25rem; }

.pricing-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.pricing-table th {
  background: var(--navy); color: var(--white); padding: .45rem .5rem;
  text-align: center; font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700;
}
.pricing-table th.prop-head { font-size: .75rem; letter-spacing: .02em; }
.pricing-table td {
  padding: .4rem .5rem; text-align: center; border-bottom: 1px solid var(--border); color: var(--text); font-size: .82rem;
}
.pricing-table td:first-child { font-weight: 700; color: var(--navy); text-align: left; padding-left: .9rem; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--sand); }
.pricing-note {
  padding: .85rem 1.1rem; font-size: .78rem; color: #92400e;
  background: #fefce8; border-top: 1px solid #fde68a; line-height: 1.7; font-weight: 500;
}

/* ── STICKY BOOKING BAR ── */
.booking-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--navy); border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 40px rgba(0,0,0,.4);
  animation: slideUp .35s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.booking-bar-inner {
  max-width: 1100px; margin: 0 auto; padding: .9rem 2rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.bb-dates {
  color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500; flex: 1; min-width: 180px;
}
.bb-dates strong { color: var(--white); }
.bb-price { flex: 2; min-width: 200px; }
.bb-price-breakdown { display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: baseline; }
.bb-price-main { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold2); }
.bb-per-night { font-family: inherit; font-size: .8rem; font-weight: 400; color: rgba(255,255,255,.6); margin-left: .1rem; }
.bb-price-detail { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.bb-price-note { font-size: .72rem; color: var(--gold2); margin-top: .2rem; font-style: italic; }
.bb-actions { flex-shrink: 0; display: flex; align-items: center; gap: .75rem; }
.bb-btn { font-size: .95rem; padding: .8rem 1.8rem; border-radius: 50px; font-weight: 800; }
.bb-clear-btn { background: none; border: 2px solid rgba(255,255,255,.35); border-radius: 50%; color: rgba(255,255,255,.7); font-size: 1.1rem; line-height: 1; cursor: pointer; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .18s; }
.bb-clear-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.7); color: #fff; }
@media (max-width: 600px) {
  .booking-bar-inner { flex-direction: column; gap: .7rem; padding: 1rem 1.2rem; }
  .bb-actions { width: 100%; justify-content: space-between; }
  .bb-btn { flex: 1; }
}

/* 2-night minimum popup */
.min-night-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.45); animation: fadeIn .2s ease;
}
.mnp-inner {
  background: #fff; border-radius: 16px; padding: 2rem 2.4rem;
  max-width: 340px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.3);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.mnp-icon { font-size: 2rem; }
.mnp-text { font-size: .95rem; color: var(--navy); line-height: 1.5; }
.mnp-close {
  background: var(--navy); color: #fff; border: none;
  padding: .6rem 2rem; border-radius: 50px; font-size: .9rem;
  font-weight: 700; cursor: pointer; font-family: inherit;
}
.mnp-close:hover { background: var(--gold); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Form cost summary card */
.form-cost-summary {
  background: linear-gradient(135deg, rgba(15,30,61,.07), rgba(184,136,42,.08));
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  margin-bottom: 1.6rem;
}
.fcs-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.fcs-dates { font-size: .9rem; color: #555; margin-bottom: .9rem; font-weight: 600; }
.fcs-rows { display: flex; flex-direction: column; gap: .3rem; }
.fcs-row { display: flex; justify-content: space-between; font-size: .88rem; color: #444; padding: .25rem 0; border-bottom: 1px solid rgba(184,136,42,.15); }
.fcs-row:last-child { border-bottom: none; }
.fcs-total { font-weight: 800; font-size: 1rem; color: var(--navy); margin-top: .2rem; }
.fcs-note { font-size: .78rem; color: #888; font-style: italic; margin-top: .8rem; }

/* Price estimate box */
.cal-estimate-box {
  background: var(--navy); border-radius: var(--radius); padding: 1.4rem;
  margin-top: 1rem; color: var(--white);
}
.est-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; color: var(--gold2); }
.est-note { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; line-height: 1.5; }
.est-rows { display: flex; flex-direction: column; gap: .4rem; }
.est-row { display: flex; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.8); padding-bottom: .4rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.est-total { font-weight: 700; color: var(--white); font-size: .95rem; border-bottom: none; padding-top: .2rem; }
.est-cta { margin-top: .9rem; font-size: .78rem; color: var(--gold2); font-weight: 600; }

@media (max-width: 960px) {
  .avail-layout { grid-template-columns: 1fr; }
  .pricing-card { position: static; }
}

/* ══════════════════
   RESPONSIVE
══════════════════ */
@media (max-width: 1024px) {
  /* property-grid stays 3-col on all sizes */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .property-detail-card { grid-template-columns: 1fr; gap: 2rem; }
  .property-detail-card.reverse .pd-images { order: 0; }
  .property-detail-card.reverse .pd-info { order: 0; }
  .consulting-intro { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .main-nav, .btn-nav { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .booking-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 4rem 1.25rem; }
  /* property-grid stays 3-col */
  .reviews-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gb-content { grid-template-columns: 1fr; }
  .gb-item { border-right: none; }
  .hero-stats { gap: 1.5rem; }
  .perks-bar { grid-template-columns: repeat(2, 1fr); }
  .perk { border-right: none; border-bottom: 1px solid var(--border); }
  .perk:nth-child(odd) { border-right: 1px solid var(--border); }
  .perk:nth-last-child(-n+2) { border-bottom: none; }
  .perk:last-child { border-right: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr; }
  /* stay-cals-grid stays 3-col on all sizes */
  .prop-switcher { gap: .4rem; padding: .6rem 1rem; }
  .prop-sw-btn { font-size: .75rem; padding: .45rem .8rem; }
}

/* ─── PROP SWITCHER ─── */
.prop-switcher {
  position: sticky;
  top: 150px;
  z-index: 200;
  background: rgba(255,255,255,.97);
  border-bottom: 2px solid var(--gold);
  display: flex;
  gap: .6rem;
  padding: .7rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}
.prop-sw-btn {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--sand);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .5rem 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.prop-sw-btn:hover { background: var(--gold-light); border-color: var(--gold); }
.prop-sw-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ─── LISTING PAGE GUIDEBOOK SECTION ─── */
.listing-guidebook-section {
  padding: 4rem 2.5rem 3rem;
  background: var(--white);
  border-top: 2px solid var(--border);
}
.lgb-header { text-align: center; margin-bottom: 2.5rem; }
.lgb-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: .5rem; }
.lgb-header p { color: var(--muted); font-size: .95rem; }
.lgb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 960px;
  margin: 0 auto;
}
.lgb-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.lgb-icon { font-size: 2rem; margin-bottom: .8rem; }
.lgb-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.lgb-placeholder { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.lgb-placeholder em { color: var(--gold2); font-style: normal; font-weight: 600; }
@media (max-width: 700px) { .lgb-grid { grid-template-columns: 1fr; } }

/* ─── LISTING PAGE CALENDAR SECTION ─── */
.listing-cal-section {
  background: var(--sand);
  padding: 4rem 2.5rem 3rem;
  border-top: 2px solid var(--border);
}
.listing-cal-header {
  text-align: center;
  margin-bottom: 2rem;
}
.listing-cal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: .3rem 0 .5rem;
}
.listing-cal-header p { color: var(--muted); font-size: .9rem; }
.listing-cal-section .cal-wrap { max-width: 700px; margin: 0 auto; }
.listing-cal-section .cal-legend { max-width: 700px; margin: 1rem auto 0; }
.listing-cal-section .cal-note { max-width: 700px; margin: .6rem auto 0; text-align: center; }

/* ─── 3-COLUMN STAY PAGE CALENDARS ─── */
.stay-cals-section { background: var(--sand); border-top: 2px solid var(--border); }
.stay-cals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stay-cal-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  /* no overflow:hidden — it breaks position:sticky on the header */
}
.stay-cal-hd {
  position: static;
  background: var(--navy);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: .8rem 1rem;
  text-align: center;
  letter-spacing: .04em;
  border-bottom: 2px solid var(--gold);
  /* clip stays clean without overflow:hidden on parent */
  margin: 0 -1px;
  width: calc(100% + 2px);
}
.stay-cal-col .cal-wrap { padding: .8rem; max-height: none; }
.stay-cal-col .cal-month { margin-bottom: 1rem; }

/* Property summary card inside each calendar column */
.stay-prop-summary {
  padding: 1rem 1rem .8rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
}
.stay-prop-summary:hover { background: var(--sand); }
.stay-prop-summary:hover .sps-view { color: var(--gold); }
.sps-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--sand2);
  color: var(--navy);
  border-radius: 4px;
  padding: .2rem .5rem;
  margin-bottom: .4rem;
}
.sps-name {
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: .3rem;
}
.sps-meta { font-size: .75rem; color: var(--muted); margin-bottom: .25rem; }
.sps-rating { font-size: .78rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.sps-view { font-size: .75rem; font-weight: 600; color: var(--gold); text-decoration: none; }

/* Property badge on every month header in the 3-col grid */
.cal-month-prop-badge {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: .15rem;
  opacity: .85;
}

@media (max-width: 900px) {
  /* stay-cals-grid stays 3-col — no collapse */
  .stay-cal-hd { top: 72px; }
}

/* ─── LISTING TOP BAR (prop switcher + Check Dates) ─── */
.listing-top-bar {
  position: sticky;
  top: 150px;
  z-index: 200;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.5rem .7rem;
  pointer-events: none;
}
.prop-switcher-inline { display: flex; gap: .5rem; flex-wrap: nowrap; align-items: center; justify-content: center; overflow-x: auto; width: 100%; pointer-events: auto; }
.listing-check-dates-btn { font-size: .88rem !important; padding: .55rem 2.5rem !important; white-space: nowrap; flex-shrink: 0; transition: opacity .3s; border-radius: 50px; pointer-events: auto; box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.listing-cta-bar { display: none !important; }
@media (max-width: 640px) {
  .listing-top-bar { top: 80px; padding: .4rem .75rem .5rem; gap: .35rem; }
  .prop-sw-btn { font-size: .72rem !important; padding: .4rem .75rem !important; }
  .listing-check-dates-btn { font-size: .78rem !important; padding: .48rem 2rem !important; }
}

/* ─── STAY PAGE PROPERTY CARDS ROW ─── */
.stay-props-row {
  margin-bottom: 0;
  position: sticky;
  top: 150px;
  z-index: 50;
  background: var(--sand);
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--border);
}
.stay-props-row .stay-prop-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .stay-props-row { max-width: 480px; margin: 0 auto; }
}

/* ─── FULL-WIDTH LISTING CTA BAR ─── */
.listing-cta-bar {
  position: sticky;
  top: 210px;
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--navy);
  padding: 1rem 2.5rem;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.lcb-left { display: flex; flex-direction: column; align-items: flex-start; gap: .25rem; flex-shrink: 0; }
.lcb-rating { font-size: .95rem; font-weight: 700; color: var(--gold2); }
.lcb-rating a { color: var(--gold2); text-decoration: underline; }
.lcb-text { font-size: .85rem; color: rgba(255,255,255,.75); }
.lcb-right { flex: 1; display: flex; flex-direction: column; align-items: flex-end; gap: .25rem; }
.lcb-btn { font-size: 1rem !important; padding: .75rem 2.4rem !important; min-width: 200px; }
.lcb-nofee { font-size: .75rem; color: rgba(255,255,255,.6); }
@media (max-width: 640px) {
  .listing-cta-bar { flex-direction: column; align-items: stretch; padding: .9rem 1.25rem; gap: .75rem; }
  .lcb-left { align-items: stretch; }
  .lcb-right { align-items: stretch; }
  .lcb-btn { min-width: unset; width: 100%; }
}

/* ─── STAY PAGE VIEW FULL LISTING BUTTON ─── */
.sps-view-btn {
  margin-top: auto;
  font-size: .82rem !important;
  padding: .6rem 1.2rem !important;
  width: 100%;
  text-align: center;
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}
.sps-view-btn:hover { background: var(--gold2) !important; border-color: var(--gold2) !important; }

/* ─── BOOKING WIDGET CTA (replaces date form) ─── */
.bw-cta-card { padding: 1rem 0 .5rem; }
.bw-cta-rating { font-size: .82rem; color: var(--muted); margin-bottom: .6rem; }
.bw-cta-rating a { color: var(--navy); font-weight: 600; text-decoration: none; }
.bw-cta-text { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5; }

/* ─── CAL ERROR TOAST ─── */
.cal-error-toast {
  position: fixed;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  z-index: 4000;
  font-size: .85rem;
  font-weight: 500;
  max-width: 420px;
  width: 90vw;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  display: none;
}

/* ─── ORPHAN DOT → STAR ─── */
.cal-orphan .cal-dot-sm {
  background: transparent !important;
  box-shadow: none !important;
  width: auto !important; height: auto !important;
  border-radius: 0 !important;
  display: flex; align-items: center; justify-content: center;
}
.cal-orphan .cal-dot-sm::before {
  content: '★';
  font-size: 11px;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 6px rgba(184,136,42,.8);
}
/* Same star in timeline */
.tl-c-orphan .tl-dot {
  background: transparent !important;
  box-shadow: none !important;
  width: auto !important; height: auto !important;
}
.tl-c-orphan .tl-dot::before {
  content: '★';
  font-size: 13px;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 7px rgba(184,136,42,.9);
}
/* Legend star */
.cal-dot-star { font-size: 11px; color: var(--gold); text-shadow: 0 0 6px rgba(184,136,42,.8); line-height: 1; }

/* ─── MOBILE NAV (inline, replaces hamburger on small screens) ─── */
.mobile-nav-inline { display: none; }
@media (max-width: 900px) {
  .hamburger { display: none !important; }
  .nav-inner {
    display: flex; align-items: center; padding: 0 .75rem; gap: 0;
  }
  .logo { flex-shrink: 0; }
  .mobile-nav-inline {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-left: 0; flex: 1; padding: 0;
  }
  .mobile-nav-inline > a {
    font-size: .72rem; padding: .5rem .45rem;
  }
  .mobile-nav-inline > a {
    color: var(--navy); font-size: .78rem; font-weight: 700;
    padding: .5rem .6rem; border-radius: 8px; letter-spacing: .01em;
    text-transform: uppercase; white-space: nowrap;
  }
  .mobile-nav-inline > a:hover { background: rgba(184,136,42,.1); color: var(--gold); }
  .btn-nav { display: none; }
  .mobile-more-wrap { position: relative; }
  .mobile-more-btn {
    background: none; border: none; cursor: pointer;
    color: var(--navy); font-size: 1rem; font-weight: 700;
    padding: .5rem .6rem; border-radius: 8px; letter-spacing: .1em;
  }
  .mobile-more-btn:hover { background: rgba(184,136,42,.1); }
  .mobile-more-menu {
    display: none; position: absolute; top: calc(100% + 4px); right: 0;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.14);
    min-width: 140px; z-index: 3000; padding: .4rem;
  }
  .mobile-more-menu.open { display: block; }
  .mobile-more-menu a {
    display: block; padding: .7rem 1rem;
    font-size: .88rem; font-weight: 600; color: var(--navy);
    border-radius: 8px;
  }
  .mobile-more-menu a:hover { background: var(--sand); }
  /* Hide the old hamburger dropdown */
  .mobile-menu { display: none !important; }
}

/* ─── MOBILE PROPERTY TABS (stay page) ─── */
.stay-mob-tabs { display: none; }
@media (max-width: 700px) {
  /* Sticky control bar: toggle + tabs stay at top while scrolling */
  .cal-toggle-wrap {
    position: static;
    background: transparent;
    padding: .5rem 0 .3rem;
    margin-bottom: 0;
  }
  .stay-mob-tabs {
    display: flex; gap: .4rem; padding: .3rem .5rem .5rem;
    justify-content: center; flex-wrap: nowrap; overflow-x: auto;
    position: sticky; top: 80px; z-index: 99;
    background: transparent;
    pointer-events: none;
  }
  .stay-mob-tabs > * { pointer-events: auto; }
  .stay-mob-tab {
    font-family: 'Inter', sans-serif;
    font-size: .75rem; font-weight: 700;
    padding: .45rem .85rem; border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--white); color: var(--muted);
    cursor: pointer; transition: all .18s;
    white-space: nowrap; flex-shrink: 0;
  }
  .stay-mob-tab.active {
    background: var(--navy); color: var(--white); border-color: var(--navy);
  }
  .stay-mob-tab:hover:not(.active) { border-color: var(--gold); color: var(--navy); }
  /* On mobile, stack prop cards in single column */
  .stay-cals-grid.stay-props-row {
    display: flex !important;
    flex-direction: column;
    gap: .75rem;
    position: static; /* un-sticky on mobile */
    border-bottom: none;
    padding-bottom: .5rem;
  }
  .stay-cals-grid.stay-props-row .stay-prop-summary { height: auto; }
  /* Active calendar column fills full width (no !important so JS display:none still works) */
  .stay-cals-grid:not(.stay-props-row) { display: block; }
  .stay-cal-col { width: 100% !important; max-width: 100% !important; }
  /* Expand mini cal cells to fill width */
  .stay-cal-col .cal-grid { gap: 2px; }
  .stay-cal-col .cal-day { min-height: 38px; padding: .25rem .1rem; }
  .stay-cal-col .cal-num { font-size: .78rem; }
  .stay-cal-col .cal-dot-sm { width: 7px; height: 7px; }
  .stay-cal-col .cal-dows span { font-size: .7rem; padding: .2rem 0; }
}

/* ─── FORM LOCKED BLOCK (dates/property set by calendar) ─── */
.form-locked-block {
  background: var(--sand); border: 1.5px solid var(--border);
  border-radius: 10px; padding: .9rem 1rem; margin-bottom: 1.2rem;
  display: flex; flex-direction: column; gap: .7rem;
}
.form-locked-row {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.form-locked-item { flex: 1; min-width: 120px; }
.form-locked-label {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: .2rem;
}
.form-locked-val {
  font-size: .9rem; font-weight: 600; color: var(--navy);
}
.form-locked-change {
  font-size: .78rem; font-weight: 700; color: var(--gold2);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  padding: .35rem .75rem; border-radius: 20px;
  background: rgba(184,136,42,.1); border: 1px solid rgba(184,136,42,.3);
}
.form-locked-change:hover { background: rgba(184,136,42,.2); color: var(--gold); }
