/* ===========================================================================
   INTERESCAP — Page bien individuelle /biens/<slug>/
   v4 : charte alignée sur la home (boutique-hôtel, Cormorant + Inter,
        palette cream/crimson, accents serif italique).
   =========================================================================== */

:root {
  --black: #0A0A0A;
  --ink: #1A1A1A;
  --crimson: #C8203D;
  --crimson-deep: #A01A33;
  --crimson-light: #E94A66;
  --cream: #F5F1EA;
  --cream-deep: #EDE6D8;
  --paper: #FAF8F4;
  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.16);
  --muted: #6B6B6B;
  --green: #1F8A55;
  --shadow-md: 0 12px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 28px 80px rgba(0,0,0,.18);
  --maxw: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
.serif, .serif-title { font-family: 'Cormorant Garamond', Georgia, serif; }
.serif-title { font-weight: 300; }
.serif-title em { font-style: italic; color: var(--crimson); font-weight: 400; }

/* ===========================================================================
   Announce bar + Header (copiés de la home)
   =========================================================================== */
.announce {
  background: var(--black);
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 20px;
  font-weight: 400;
  border-bottom: 1px solid rgba(200,32,61,0.25);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}
.announce strong { color: var(--crimson); font-weight: 600; letter-spacing: 2.5px; }
.announce-sep { color: rgba(255,255,255,0.2); }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,32,61,0.18);
  color: white;
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.header-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1;
}
.h-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.6px;
  line-height: 1;
  white-space: nowrap;
}
.h-brand em {
  font-style: italic;
  color: var(--crimson);
  font-weight: 500;
  margin-left: 4px;
}
.h-accent { color: var(--crimson); font-weight: 500; }
.h-tagline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 7px;
}
.nav { display: flex; gap: 32px; justify-content: center; }
.nav a {
  color: rgba(255,255,255,0.9);
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--crimson);
  transform: scaleX(0); transition: transform 0.3s;
  transform-origin: center;
}
.nav a:hover { color: var(--crimson); }
.nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.header-back {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.18);
  transition: all .2s;
}
.header-back:hover { color: white; border-color: var(--crimson); }

@media (max-width: 920px) {
  .header-inner { grid-template-columns: 1fr auto; padding: 14px 20px; gap: 16px; }
  .nav { display: none; }
  .h-brand { font-size: 24px; }
}

/* ===========================================================================
   Galerie photos — 1 large + 2×2 droite (rounded subtle)
   =========================================================================== */
.gallery {
  max-width: var(--maxw); margin: 32px auto 0;
  padding: 0 40px;
  display: grid; gap: 10px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 16/9;
  max-height: 560px;
}
.gallery-img {
  background: var(--cream-deep) center/cover no-repeat;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.gallery-img:hover { transform: scale(1.01); }
.gallery-img:focus-visible { outline: 2px solid var(--crimson); outline-offset: 2px; }
.gallery-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}
.gallery-img:first-child { grid-row: 1 / 3; }

.gallery-rating {
  position: absolute; top: 18px; left: 18px;
  background: var(--crimson);
  color: white; padding: 7px 14px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  z-index: 2;
}
.gallery-rating::before { content: '★'; font-size: 12px; }

.gallery-more {
  position: absolute; bottom: 18px; right: 18px;
  background: white;
  color: var(--black); padding: 11px 18px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  z-index: 2;
  transition: transform .2s, background .2s;
}
.gallery-img:hover .gallery-more { transform: translateY(-2px); }
.gallery-more::before {
  content: '';
  display: inline-block; width: 12px; height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='2'><rect x='3' y='3' width='8' height='8'/><rect x='13' y='3' width='8' height='8'/><rect x='3' y='13' width='8' height='8'/><rect x='13' y='13' width='8' height='8'/></svg>");
  background-size: contain;
}

@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr; grid-template-rows: 320px; aspect-ratio: auto; padding: 0 20px; }
  .gallery-img:not(:first-child) { display: none; }
  .gallery-img:first-child .gallery-more { display: inline-flex; }
}

/* ===========================================================================
   Hero du bien (eyebrow + titre serif + meta)
   =========================================================================== */
.listing-hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 56px 40px 28px;
}
.listing-hero-inner { max-width: 1080px; }
.listing-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--crimson); font-weight: 600;
  margin-bottom: 22px;
}
.listing-eyebrow::before, .listing-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--crimson);
}
.listing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.5px;
  color: var(--black);
  margin: 0 0 22px;
}
.listing-title em { font-style: italic; color: var(--crimson); font-weight: 400; }
.listing-meta {
  font-size: 14px; color: var(--muted);
  letter-spacing: 0.4px;
  font-weight: 400;
}
.listing-rating-row {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px;
  font-size: 14px;
}
.listing-rating-row .stars { color: var(--crimson); letter-spacing: 2px; font-size: 13px; }
.listing-rating-row .rating-num { font-weight: 600; color: var(--black); }
.listing-rating-row .rating-count { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* ===========================================================================
   Layout principal 2-col
   =========================================================================== */
.listing-layout {
  max-width: var(--maxw); margin: 0 auto;
  padding: 32px 40px 120px;
  display: grid; gap: 96px;
  grid-template-columns: 1fr 400px;
  align-items: start;
}
@media (max-width: 1080px) {
  .listing-layout { grid-template-columns: 1fr; gap: 56px; padding-bottom: 140px; }
  .booking-panel { display: none; }
}
@media (max-width: 760px) {
  .listing-hero { padding: 36px 20px 18px; }
  .listing-layout { padding: 24px 20px 140px; }
}

/* ===========================================================================
   Sections + Eyebrow + Section titles (style home)
   =========================================================================== */
.listing-section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.listing-section:first-of-type { border-top: none; padding-top: 0; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--crimson); font-weight: 600;
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--crimson);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--black);
  letter-spacing: -0.3px;
  margin: 0 0 28px;
}
.section-title em { font-style: italic; color: var(--crimson); font-weight: 400; }
.section-sub {
  font-size: 14px; color: var(--muted);
  margin: -14px 0 28px;
  line-height: 1.7; max-width: 640px;
  font-weight: 300;
}

/* ===========================================================================
   Description avec Afficher plus
   =========================================================================== */
.description-content {
  font-size: 16px; line-height: 1.85; color: #3A3A3A;
  font-weight: 300;
  max-height: 12em; overflow: hidden; position: relative;
  transition: max-height .35s ease;
}
.description-content.expanded { max-height: 4000px; }
.description-content.expanded::after { display: none; }
.description-content:not(.expanded)::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4em;
  background: linear-gradient(to bottom, rgba(250,248,244,0), var(--paper) 90%);
  pointer-events: none;
}

/* Boutons réutilisables charte */
.ie-btn-primary {
  background: var(--crimson);
  color: white;
  padding: 14px 28px;
  border: 1px solid var(--crimson);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; transition: all .25s;
}
.ie-btn-primary:hover:not([disabled]) { background: var(--crimson-deep); border-color: var(--crimson-deep); }
.ie-btn-primary[disabled] { opacity: .45; cursor: not-allowed; }

.ie-btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border: 1px solid var(--line-strong);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; transition: all .25s;
  margin-top: 20px;
}
.ie-btn-ghost:hover { border-color: var(--crimson); color: var(--crimson); }

/* ===========================================================================
   Amenities grid (cards cream)
   =========================================================================== */
.amenities-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
.amenity-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.amenity-card:hover { border-color: var(--crimson); transform: translateY(-1px); }
.amenity-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  color: var(--crimson);
}
.amenity-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.amenity-name {
  font-size: 13px; color: var(--ink);
  letter-spacing: 0.3px;
  font-weight: 400;
}

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

/* ===========================================================================
   Calendrier inline (style home : cards cream)
   =========================================================================== */
.calendar-inline-wrap {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 24px;
}
.calendar-inline-nav {
  margin-bottom: 16px;
  align-items: center;
  justify-content: space-between;
}
.calendar-inline-hint {
  font-size: 11px; color: var(--muted);
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  text-align: center; flex: 1;
}

/* ===========================================================================
   Fact grid (Bon à savoir)
   =========================================================================== */
.fact-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) { .fact-grid { grid-template-columns: 1fr; } }
.fact-card {
  background: white;
  border: 1px solid var(--line);
  padding: 26px 28px;
  transition: border-color .2s;
}
.fact-card:hover { border-color: var(--crimson); }
.fact-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--crimson); margin: 0 0 16px;
}
.fact-list {
  list-style: none; padding: 0; margin: 0;
  font-size: 14px; line-height: 1.75; color: var(--ink);
  font-weight: 300;
}
.fact-list li {
  padding: 5px 0 5px 16px;
  position: relative;
}
.fact-list li::before {
  content: ''; position: absolute;
  left: 0; top: 13px;
  width: 5px; height: 5px;
  background: var(--crimson);
}
.fact-list strong { color: var(--black); font-weight: 500; }

/* Location map (Leaflet) */
.listing-map {
  width: 100%;
  height: 380px;
  border: 1px solid var(--line);
  background: var(--cream);
  margin-bottom: 18px;
}
.listing-map.is-empty {
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase;
}
/* Leaflet attribution discret */
.leaflet-container { font-family: 'Inter', sans-serif !important; }
.leaflet-control-attribution {
  background: rgba(250, 248, 244, 0.85) !important;
  font-size: 10px !important; padding: 2px 6px !important;
}
.location-desc {
  font-size: 15px; color: #3A3A3A; line-height: 1.85;
  font-weight: 300;
  margin: 0; max-width: 720px;
}

/* ===========================================================================
   Datepicker modal
   =========================================================================== */
.datepicker-modal {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  z-index: 200;
  padding: 20px;
}
.datepicker-modal.open { display: flex; }
.datepicker-content {
  background: var(--paper);
  padding: 36px;
  max-width: 780px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--crimson);
}
.datepicker-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.datepicker-header h3 {
  margin: 0; font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: var(--black);
}
.datepicker-header h3 em { font-style: italic; color: var(--crimson); font-weight: 400; }
.datepicker-close {
  background: transparent; border: 0;
  width: 36px; height: 36px;
  font-size: 24px; line-height: 1; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, transform .2s;
}
.datepicker-close:hover { color: var(--crimson); transform: rotate(90deg); }
.datepicker-summary {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px; font-weight: 500;
}

.calendar-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.calendar-nav button {
  background: transparent; border: 1px solid var(--line-strong);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 16px;
  transition: all .2s;
}
.calendar-nav button:hover:not([disabled]) { background: var(--black); color: white; border-color: var(--black); }
.calendar-nav button[disabled] { opacity: .25; cursor: not-allowed; }

.calendar-months {
  display: grid; gap: 32px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 680px) { .calendar-months { grid-template-columns: 1fr; } }
.cal-month-title {
  text-align: center; margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500; color: var(--black);
  text-transform: capitalize;
  letter-spacing: 0.3px;
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-dow {
  font-size: 10px; font-weight: 600; color: var(--muted);
  text-align: center; padding: 6px 0;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer;
  font-weight: 400;
  transition: background .12s, color .12s;
  position: relative; user-select: none;
  color: var(--ink);
}
.cal-day.empty { cursor: default; }
.cal-day.available:hover { background: var(--cream); }
.cal-day.past { color: rgba(10,10,10,0.2); cursor: not-allowed; text-decoration: line-through; }
.cal-day.booked {
  color: rgba(10,10,10,0.22); cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.in-range { background: var(--cream-deep); }
.cal-day.start, .cal-day.end {
  background: var(--crimson); color: white; font-weight: 600;
  z-index: 2;
}

.calendar-inline-months .cal-day.in-range { background: var(--cream-deep); }
.calendar-inline-months .cal-day.available:hover { background: var(--cream-deep); }

.datepicker-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
.datepicker-clear {
  background: transparent; border: 0;
  text-decoration: underline; color: var(--muted);
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.datepicker-clear:hover { color: var(--crimson); }

/* ===========================================================================
   Booking panel (sidebar premium, style search-widget de la home)
   =========================================================================== */
.booking-panel {
  position: sticky; top: 110px;
  background: white;
  border-top: 3px solid var(--crimson);
  box-shadow: var(--shadow-md);
  padding: 28px 28px 24px;
}
.booking-panel-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.booking-eyebrow {
  display: block;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--crimson); font-weight: 600;
  margin-bottom: 10px;
}
.booking-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 400;
  color: var(--black);
  line-height: 1.05;
}
.booking-headline small {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 300;
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: 0.3px;
}
.booking-tagline {
  font-size: 11px; color: var(--muted);
  letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500;
  margin-top: 8px;
}

.booking-fields {
  border: 1px solid var(--line-strong);
  margin-bottom: 18px;
}
.booking-field {
  padding: 14px 18px;
  cursor: pointer;
  background: white;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  text-align: left;
  width: 100%;
  display: block;
  transition: background .15s;
}
.booking-field:last-child { border-bottom: 0; }
.booking-field:hover { background: var(--cream); }
.booking-field-static { cursor: default; }
.booking-field-static:hover { background: white; }

.booking-field-label {
  display: block;
  font-size: 9px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.booking-field-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500;
  color: var(--ink);
}
.booking-field-value.empty { color: var(--muted); font-weight: 400; }
.booking-field-hint {
  display: block;
  font-size: 11px; color: var(--muted);
  margin-top: 2px; font-weight: 300;
}
.booking-field select {
  border: 0; background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500;
  color: var(--ink);
  padding: 0; width: 100%; outline: none; cursor: pointer;
}

/* Quote rows */
.booking-quote-rows {
  margin: 18px 0; padding-bottom: 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.booking-quote-row {
  display: flex; justify-content: space-between;
  padding: 7px 0; color: var(--ink);
  font-weight: 300;
}
.booking-quote-row.total {
  font-weight: 600; font-size: 16px; color: var(--black);
  padding-top: 14px; margin-top: 10px;
  border-top: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
}
.booking-quote-row.total span:last-child { color: var(--crimson); font-weight: 500; }

.booking-ctas {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 4px;
}
.booking-ctas .ie-btn-primary,
.booking-ctas .ie-btn-ghost { padding: 16px 24px; margin-top: 0; }

.booking-trust {
  list-style: none; padding: 0;
  margin: 18px 0 0;
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.booking-trust li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--muted);
  letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500;
}
.trust-dot {
  display: inline-block; width: 5px; height: 5px;
  background: var(--crimson);
  border-radius: 50%;
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--cream) 0%, var(--cream-deep) 50%, var(--cream) 100%);
  background-size: 200% 100%;
  animation: skeleton 1.4s infinite ease-in-out;
  color: transparent !important;
}
@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Info banner (mode démo) */
.info-banner {
  background: rgba(200,32,61,0.06);
  color: var(--crimson-deep);
  padding: 14px 20px;
  border-left: 3px solid var(--crimson);
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 400;
}
.info-banner strong { font-weight: 600; }

/* ===========================================================================
   LIGHTBOX
   =========================================================================== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,10,.97);
  display: none;
  z-index: 300;
  flex-direction: column;
  animation: lb-fade .25s ease;
}
.lightbox.open { display: flex; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }

.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  width: 44px; height: 44px;
  font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  z-index: 305;
}
.lightbox-close:hover { background: var(--crimson); border-color: var(--crimson); transform: rotate(90deg); }
.lightbox-counter {
  position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.78);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  z-index: 305;
}
.lightbox-stage {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 90px 110px 140px;
  overflow: hidden;
}
.lightbox-image {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: lb-zoom .3s ease;
}
@keyframes lb-zoom {
  from { transform: scale(.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  width: 52px; height: 52px;
  font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  z-index: 305;
}
.lightbox-nav:hover { background: var(--crimson); border-color: var(--crimson); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-thumbs {
  position: absolute; bottom: 22px; left: 0; right: 0;
  display: flex; gap: 8px;
  overflow-x: auto; overflow-y: hidden;
  padding: 0 90px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.3) transparent;
}
.lightbox-thumbs::-webkit-scrollbar { height: 6px; }
.lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); }
.lightbox-thumb {
  flex-shrink: 0;
  width: 92px; height: 64px;
  background: var(--cream-deep) center/cover no-repeat;
  cursor: pointer;
  opacity: .5;
  transition: all .2s;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.lightbox-thumb:hover { opacity: .85; }
.lightbox-thumb.active {
  opacity: 1;
  outline-color: var(--crimson);
}

@media (max-width: 760px) {
  .lightbox-stage { padding: 80px 16px 110px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 22px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-thumbs { padding: 0 16px 8px; }
  .lightbox-thumb { width: 72px; height: 50px; }
}

/* ===========================================================================
   Mobile sticky bottom bar (<= 1080px)
   =========================================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 2px solid var(--crimson);
  padding: 12px 20px 14px;
  z-index: 100;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -6px 24px rgba(0,0,0,.10);
}
@media (max-width: 1080px) {
  .mobile-cta-bar { display: flex; }
}
.mobile-cta-info {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.mobile-cta-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--crimson); font-weight: 600;
}
.mobile-cta-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 500; color: var(--black);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 2px;
}
.mobile-cta-dates {
  font-size: 11px; color: var(--muted);
  text-decoration: underline; text-underline-offset: 2px;
  font-weight: 300;
}
.mobile-cta-btn {
  white-space: nowrap;
  padding: 14px 22px;
  font-size: 11px;
}

/* ===========================================================================
   Footer (style home)
   =========================================================================== */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 40px 48px;
  border-top: 1px solid rgba(200,32,61,0.18);
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400;
  color: white;
  letter-spacing: 0.5px;
}
.footer-wordmark em { font-style: italic; color: var(--crimson); font-weight: 500; margin-left: 4px; }
.footer-tagline {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 4px;
}
.footer-meta {
  display: flex; gap: 16px; align-items: center;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.footer-meta a:hover { color: var(--crimson); }
.footer-sep { color: rgba(255,255,255,0.3); }
.footer-copy {
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 6px;
}
