/* Booking hub v2 — aligned with thekinn.co (WordPress/Elementor site).
   Palette: cream #f9f4f2 · ink #1a1a1a · white cards · black pill buttons.
   Type:    Monument Extended (display caps) · Libre Baskerville italic (card titles)
            · Jost (body). Fonts self-hosted in /assets/fonts/. */

@font-face {
  font-family: 'Monument Extended';
  src: url('/assets/fonts/MonumentExtended-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Monument Extended';
  src: url('/assets/fonts/MonumentExtended-Ultrabold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

:root {
  --cream: #f9f4f2;
  --ink: #1a1a1a;
  --muted: #6b6560;
  --stone: #dcdcd0;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 1px 3px rgba(26,26,26,.06), 0 12px 30px rgba(26,26,26,.05);
  --mono-display: 'Monument Extended', 'Jost', sans-serif;
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans: 'Jost', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 56px 20px 72px; }

/* ---- Header — the site's .new-title treatment: huge Monument caps + italic serif ---- */
.page-head { text-align: center; margin-bottom: 44px; }
.logo { height: 30px; width: auto; display: inline-block; margin-bottom: 26px; }
.page-head h1 {
  font-family: var(--mono-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(44px, 9vw, 72px); letter-spacing: .04em; line-height: .95;
  margin: 0;
}
.page-head .sub {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 4vw, 27px); line-height: 1.4; margin: 10px 0 0;
}

/* ---- Offer cards ---- */
.offers { display: flex; flex-direction: column; gap: 26px; }
.offer {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Photos — swipeable carousel, dots overlaid (never shifts title spacing) */
.gallery { position: relative; }
.offer-photos {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.offer-photos::-webkit-scrollbar { display: none; }
.photo {
  flex: 0 0 100%; scroll-snap-align: center;
  position: relative; aspect-ratio: 7 / 4; overflow: hidden;
  background: linear-gradient(135deg, #efe9e4, #f6f1ec);
  display: flex; align-items: center; justify-content: center;
}
.photo::after { content: "⬦"; color: var(--stone); font-size: 22px; }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dots {
  position: absolute; left: 0; right: 0; bottom: 12px; z-index: 2;
  display: flex; gap: 6px; justify-content: center;
}
.dots button {
  width: 7px; height: 7px; padding: 0; border: none; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.55); box-shadow: 0 1px 2px rgba(0,0,0,.3);
  transition: background .15s, transform .15s;
}
.dots button.active { background: #fff; transform: scale(1.3); }

/* Body — italic serif title (the site's .sp__card h3), Monument price, Jost copy */
.offer-body { padding: 26px 28px 28px; }
.offer-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.offer-head h2 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 28px; line-height: 1.1; margin: 0; color: var(--ink);
}
.price {
  margin-left: auto; font-family: var(--mono-display); font-weight: 400;
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em; white-space: nowrap;
}
.tag-soon {
  margin-left: auto; font-family: var(--mono-display); font-weight: 400;
  font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted);
  border: 1px solid var(--stone); border-radius: 50px; padding: 5px 14px 4px; white-space: nowrap;
}
.offer-body p { color: var(--muted); margin: 0 0 22px; max-width: 60ch; }

/* Buttons — the site's a.btn: uppercase pill, 2px black border, fills black on hover */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 500;
  font-size: 14px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink); background: transparent; border: 2px solid var(--ink);
  border-radius: 50px; padding: 12px 26px 11px; line-height: 1;
  text-decoration: none; cursor: pointer;
  transition: background .15s, color .15s;
}
.btn:hover { background: var(--ink); color: var(--cream); }
.btn.is-disabled {
  border-color: var(--stone); color: var(--muted);
  cursor: default; pointer-events: none;
}

.foot {
  text-align: center; margin: 52px 0 0;
  font-family: var(--mono-display); font-size: 10.5px; font-weight: 400;
  text-transform: uppercase; letter-spacing: .18em; color: var(--muted);
}
.foot a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--stone); }

@media (max-width: 560px) {
  .offer-body { padding: 22px 20px 24px; }
  .offer-head h2 { font-size: 24px; }
}
