:root {
  --bg: #f8f1e9;
  --surface: #fffaf4;
  --surface2: #efe1d2;
  --text: #342b25;
  --muted: #77695d;
  --primary: #8a6a50;
  --primary2: #c9995f;
  --line: rgba(52,43,37,.14);
  --shadow: 0 22px 70px rgba(63,43,28,.14);
  --radius: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  padding-bottom: 0;
}

a { color: inherit; }

.hidden { display: none; }

.site-header {
  position: fixed;
  top: 14px;
  left: 18px;
  right: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  background: rgba(255,250,244,.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 14px 44px rgba(52,43,37,.12);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-weight: 900;
  letter-spacing: -1px;
}

.brand strong {
  display: block;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.desktop-nav a {
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.desktop-nav a:hover {
  color: var(--text);
  background: rgba(138,106,80,.1);
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.lang-switch button {
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  color: var(--muted);
}

.lang-switch button.active {
  background: var(--text);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 24px 54px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,250,244,.86), rgba(255,250,244,.4) 34%, rgba(52,43,37,.55) 100%),
    linear-gradient(90deg, rgba(248,241,233,.9), rgba(248,241,233,.62), rgba(52,43,37,.55));
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  margin: 0 0 14px;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,250,244,.76);
  border: 1px solid rgba(255,255,255,.65);
}

h1 {
  font-size: clamp(42px, 8vw, 92px);
  line-height: .92;
  letter-spacing: -0.07em;
  margin: 0;
  max-width: 980px;
  margin-inline: auto;
}

h2 {
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.hero-text {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: var(--muted);
  width: min(680px, 100%);
  margin: 22px auto 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 18px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  font-size: 15px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: 0 18px 42px rgba(138,106,80,.28);
}

.btn-secondary,
.btn-glass {
  background: rgba(255,250,244,.84);
  border-color: rgba(255,255,255,.7);
  color: var(--text);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(760px, 100%);
  margin: 34px auto 0;
}

.trust-strip div {
  background: rgba(255,250,244,.76);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 14px 44px rgba(52,43,37,.08);
}

.trust-strip strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 92px 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  width: min(760px, 100%);
  margin: 0 auto 34px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.section-book {
  width: min(1040px, 100%);
}

.booking-card,
.contact-card {
  background: rgba(255,250,244,.9);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: var(--text);
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 15px;
  background: #fff;
  font: inherit;
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(138,106,80,.55);
  box-shadow: 0 0 0 4px rgba(138,106,80,.1);
}

.booking-note {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f4eadf;
  color: var(--muted);
  line-height: 1.5;
}

.booking-note p { margin: 0; }

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.success-message {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #edf7ee;
  color: #335b39;
  font-weight: 800;
}

.success-message.show {
  display: block;
}

.feature-grid,
.parking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid article,
.parking-grid article {
  background: rgba(255,250,244,.86);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 16px 46px rgba(63,43,28,.08);
}

.feature-grid article span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #f2e4d6;
  margin-bottom: 16px;
  font-size: 24px;
}

.feature-grid p,
.parking-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.parking-grid a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
}

.gallery button {
  border: 0;
  padding: 0;
  min-height: 260px;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: #e8ddd2;
}

.gallery button:first-child {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
}

.gallery button:hover img {
  transform: scale(1.045);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.host {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 24px 104px;
  width: min(1180px, 100%);
  margin: 0 auto;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(20,15,12,.85);
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 22px;
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 28px;
  cursor: pointer;
}

.mobile-bar {
  display: none;
}

@media (max-width: 820px) {
  body { padding-bottom: 84px; }

  .site-header {
    top: 8px;
    left: 8px;
    right: 8px;
    border-radius: 22px;
    padding: 8px;
  }

  .brand small,
  .desktop-nav {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero {
    min-height: 88svh;
    padding: 100px 12px 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(248,241,233,.86), rgba(248,241,233,.68), rgba(52,43,37,.52)),
      radial-gradient(circle at 50% 20%, rgba(255,255,255,.55), rgba(255,255,255,0) 45%);
  }

  h1 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .trust-strip div {
    padding: 12px;
  }

  .section {
    padding: 58px 12px;
  }

  .booking-card,
  .contact-card {
    padding: 18px;
    border-radius: 22px;
  }

  .form-grid,
  .feature-grid,
  .parking-grid,
  .contact-card,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .gallery {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .gallery button,
  .gallery button:first-child {
    flex: 0 0 82%;
    min-height: 240px;
    scroll-snap-align: start;
    grid-row: auto;
  }

  footer {
    flex-direction: column;
    padding: 28px 12px 104px;
  }

  .mobile-bar {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 60;
    padding: 8px;
    border-radius: 22px;
    background: rgba(255,250,244,.93);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: 0 18px 50px rgba(52,43,37,.22);
  }

  .mobile-bar a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    font-weight: 950;
    font-size: 13px;
    background: #fff;
    border: 1px solid var(--line);
  }

  .mobile-bar .mobile-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    color: #fff;
    border-color: transparent;
  }
}


/* v4: bigger date fields and visible pricing */
.date-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr .7fr;
  gap: 16px;
  margin-bottom: 16px;
}

.date-card,
.guest-card {
  position: relative;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 16px;
  cursor: pointer;
  display: grid;
  align-content: center;
  gap: 8px;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.date-card:hover,
.guest-card:hover {
  border-color: rgba(138,106,80,.55);
  box-shadow: 0 14px 34px rgba(63,43,28,.1);
  transform: translateY(-1px);
}

.date-card span,
.guest-card span {
  color: var(--muted);
  font-weight: 950;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.date-card strong {
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
  color: var(--text);
}

.date-card small {
  color: var(--primary);
  font-weight: 850;
}

.date-card input[type="date"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.guest-card input {
  font-size: 30px;
  font-weight: 950;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.guest-card input:focus {
  box-shadow: none;
}

.estimate-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, #f4eadf, #fff8f0);
  border: 1px solid rgba(138,106,80,.16);
  border-radius: 22px;
  padding: 18px;
  margin: 0 0 18px;
}

.estimate-card span {
  display: block;
  color: var(--muted);
  font-weight: 950;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.estimate-card strong {
  display: block;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1;
  color: var(--primary);
}

.estimate-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-grid article {
  background: rgba(255,250,244,.9);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(63,43,28,.08);
  padding: 22px;
}

.price-grid span,
.price-grid small {
  display: block;
  color: var(--muted);
  font-weight: 850;
}

.price-grid strong {
  display: block;
  margin: 12px 0 6px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.04em;
}

@media (max-width: 820px) {
  .date-grid,
  .estimate-card,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .date-card,
  .guest-card {
    min-height: 96px;
  }
}


/* v5: Location map section */
.location-section {
  width: min(1180px, 100%);
}

.map-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
  background: rgba(255,250,244,.9);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.map-copy {
  padding: 18px;
  display: grid;
  align-content: center;
}

.map-copy p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
  font-size: 17px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-frame {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #e7ddd3;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(.92) contrast(.98);
}

@media (max-width: 820px) {
  .map-card {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 24px;
  }

  .map-copy {
    padding: 12px;
  }

  .map-actions .btn {
    width: 100%;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }
}


/* v6: cleaner boutique visual tuning */
.prices-section,
.estimate-card {
  display: none !important;
}

body {
  font-weight: 400;
}

.site-header {
  padding: 8px 10px;
}

.desktop-nav a {
  font-weight: 600;
  font-size: 13px;
  padding: 8px 10px;
}

.brand strong {
  font-weight: 760;
}

.brand small {
  font-weight: 450;
}

h1 {
  font-weight: 720;
  letter-spacing: -0.055em;
  font-size: clamp(38px, 7vw, 78px);
}

h2 {
  font-weight: 700;
  letter-spacing: -0.035em;
  font-size: clamp(28px, 4.4vw, 48px);
}

h3 {
  font-weight: 680;
}

.hero-text,
.section-head p:not(.eyebrow),
.map-copy p,
.feature-grid p,
.parking-grid p,
.contactText {
  font-weight: 400;
}

.eyebrow {
  font-weight: 720;
  letter-spacing: .13em;
}

.btn {
  min-height: 46px;
  border-radius: 15px;
  padding: 11px 16px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: none;
}

.btn-primary {
  box-shadow: 0 12px 28px rgba(138,106,80,.18);
}

.hero-actions {
  gap: 10px;
  margin-top: 24px;
}

.trust-strip strong {
  font-size: 24px;
  font-weight: 720;
}

.trust-strip span {
  font-weight: 500;
  font-size: 13px;
}

.booking-card,
.contact-card {
  padding: 24px;
}

.date-grid {
  grid-template-columns: 1fr 1fr .58fr;
  gap: 12px;
}

.date-card,
.guest-card {
  min-height: 88px;
  border-radius: 18px;
  padding: 14px;
}

.date-card span,
.guest-card span {
  font-weight: 650;
  font-size: 12px;
  letter-spacing: .05em;
}

.date-card strong {
  font-size: clamp(17px, 2.3vw, 22px);
  font-weight: 700;
}

.date-card small {
  font-weight: 500;
  font-size: 12px;
  opacity: .85;
}

.guest-card input {
  font-size: 24px;
  font-weight: 700;
}

input,
textarea {
  border-radius: 14px;
  padding: 13px 14px;
  font-weight: 400;
}

label {
  font-weight: 600;
}

.feature-grid article,
.parking-grid article {
  padding: 20px;
}

.feature-grid article span {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  font-size: 21px;
}

.mobile-bar a {
  min-height: 42px;
  border-radius: 14px;
  font-weight: 760;
  font-size: 12px;
}

.map-card {
  border-radius: 26px;
}

.map-copy h3 {
  font-weight: 700;
}

@media (max-width: 820px) {
  .btn {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 14px;
  }

  .hero {
    min-height: 84svh;
  }

  h1 {
    font-size: clamp(32px, 11vw, 48px);
    line-height: .98;
  }

  .hero-text {
    font-size: 15.5px;
    line-height: 1.45;
  }

  .date-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .date-card,
  .guest-card {
    min-height: 78px;
  }

  .booking-card,
  .contact-card {
    padding: 16px;
  }

  .section {
    padding: 50px 12px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.45;
  }

  .trust-strip {
    display: none;
  }

  .mobile-bar {
    border-radius: 18px;
    padding: 7px;
  }
}


/* v7: custom availability calendar with prices */
.booking-calendar-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(24, 18, 14, .62);
  backdrop-filter: blur(8px);
}

.booking-calendar-overlay.show {
  display: flex;
}

.booking-calendar-modal {
  width: min(860px, 100%);
  max-height: 92svh;
  overflow: auto;
  background: #fffaf4;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(24, 18, 14, .32);
  padding: 20px;
}

.calendar-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.calendar-modal-head h2 {
  font-size: clamp(25px, 4vw, 42px);
  margin: 0 0 8px;
}

.calendar-modal-head p:not(.eyebrow),
.calendar-bottom p {
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.calendar-close {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.calendar-toolbar {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin: 14px 0;
}

.mini-btn {
  min-height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 750;
  cursor: pointer;
}

.calendar-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar-legend i {
  width: 13px;
  height: 13px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid transparent;
}

.legend-free { background: #eef6ee; border-color: #d4e6d2 !important; }
.legend-busy { background: #f8e7e1; border-color: #efcabe !important; }
.legend-selected { background: var(--primary); }

.calendar-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}

.calendar-weekdays {
  margin-bottom: 7px;
}

.calendar-weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.cal-day {
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 8px;
  cursor: pointer;
  display: grid;
  align-content: space-between;
  text-align: left;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
  color: var(--text);
}

.cal-day:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(138,106,80,.4);
  box-shadow: 0 10px 22px rgba(63,43,28,.08);
}

.cal-day:disabled {
  cursor: not-allowed;
}

.cal-day.out-month {
  opacity: .42;
}

.cal-day.free {
  background: #f1f8f1;
  border-color: #d4e6d2;
}

.cal-day.busy,
.cal-day.blocked {
  background: #faebe6;
  border-color: #efcabe;
  color: #9b5847;
}

.cal-day.past {
  opacity: .32;
  cursor: not-allowed;
}

.cal-day.selected-start,
.cal-day.selected-end {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  border-color: transparent;
}

.cal-day.in-range {
  background: #eadccd;
  border-color: rgba(138,106,80,.25);
}

.cal-date {
  font-weight: 760;
  font-size: 15px;
}

.cal-status {
  font-size: 11px;
  font-weight: 700;
  opacity: .75;
}

.cal-price {
  font-weight: 800;
  font-size: 13px;
}

.calendar-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.calendar-bottom .btn {
  min-width: 130px;
}

.date-card {
  border: 1px solid var(--line);
  text-align: left;
  font-family: inherit;
  color: inherit;
}

@media (max-width: 820px) {
  .booking-calendar-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .booking-calendar-modal {
    width: 100%;
    max-height: 92svh;
    border-radius: 24px 24px 0 0;
    padding: 14px;
  }

  .calendar-toolbar {
    justify-content: flex-start;
  }

  .calendar-weekdays,
  .booking-calendar-grid {
    gap: 5px;
  }

  .cal-day {
    min-height: 66px;
    border-radius: 12px;
    padding: 6px;
  }

  .cal-date {
    font-size: 13px;
  }

  .cal-status {
    display: none;
  }

  .cal-price {
    font-size: 11px;
  }

  .calendar-bottom {
    position: sticky;
    bottom: 0;
    background: #fffaf4;
    padding-bottom: 2px;
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-bottom .btn {
    width: 100%;
  }
}


/* v8: booking wording + gallery opens one-by-one, no mobile horizontal scroll */
.gallery {
  overflow: visible;
}

.gallery button {
  position: relative;
}

.gallery button::after {
  content: "↗";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,250,244,.88);
  color: var(--text);
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.72);
}

.lightbox {
  background: rgba(20,15,12,.9);
}

.lightbox-inner {
  position: relative;
  width: min(1120px, 100%);
  max-height: 92vh;
  display: grid;
  place-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  border: 0;
  background: rgba(255,250,244,.94);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(0,0,0,.18);
}

.lightbox-close {
  top: -54px;
  right: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 28px;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-counter {
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  color: #fffaf4;
  font-weight: 650;
  background: rgba(0,0,0,.28);
  border-radius: 999px;
  padding: 7px 12px;
}

@media (max-width: 820px) {
  .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    gap: 10px;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .gallery button,
  .gallery button:first-child {
    flex: none;
    min-height: 170px;
    grid-row: auto;
    scroll-snap-align: none;
    border-radius: 18px;
  }

  .gallery button:first-child {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .gallery button::after {
    width: 30px;
    height: 30px;
    right: 9px;
    bottom: 9px;
    font-size: 13px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox img {
    max-height: 78vh;
    border-radius: 18px;
  }

  .lightbox-close {
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 29px;
    background: rgba(255,250,244,.88);
  }

  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }
}

/* v9: calendar speed UX polish */
#calendarHelper {
  min-height: 1.35em;
}

.cal-day {
  animation: calFade .12s ease-out;
}

@keyframes calFade {
  from { opacity: .72; transform: translateY(1px); }
  to { opacity: 1; transform: translateY(0); }
}
