/* KINN Events — event rentals page, aligned with thekinn.co.
   Palette: cream #f9f4f2 · ink #1a1a1a · white cards · black pill buttons.
   Type: Monument Extended (display caps) · Libre Baskerville italic · 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 { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 880px; margin: 0 auto; padding: 0 20px; }

/* ---- Type helpers ---- */
.eyebrow {
  font-family: var(--mono-display); font-weight: 400; font-size: 11px;
  text-transform: uppercase; letter-spacing: .24em; color: var(--ink); margin: 0 0 16px;
}
h2.display {
  font-family: var(--mono-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(26px, 5.4vw, 40px); letter-spacing: .04em; line-height: 1.06; margin: 0 0 18px;
}
.serif-line {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(19px, 3.6vw, 25px); line-height: 1.45;
}

/* ---- Buttons: the site's a.btn — uppercase pill, 2px black border ---- */
.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: 13px 30px 12px; line-height: 1;
  text-decoration: none; cursor: pointer; transition: background .15s, color .15s;
}
.btn:hover { background: var(--ink); color: var(--cream); }
.btn.solid { background: var(--ink); color: var(--cream); }
.btn.solid:hover { background: transparent; color: var(--ink); }

/* ---- Hero ---- */
.hero { text-align: center; padding: 56px 0 0; }
.logo { height: 30px; width: auto; display: inline-block; margin-bottom: 28px; }
.hero h1 {
  font-family: var(--mono-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(52px, 11vw, 96px); letter-spacing: .04em; line-height: .95; margin: 0;
}
.hero .sub { margin: 14px 0 26px; }
.hero-cta { margin-bottom: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-img {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.hero-img img { display: block; width: 100%; height: auto; }

/* ---- Statement band ---- */
.statement { text-align: center; padding: 78px 0 72px; max-width: 720px; margin: 0 auto; }
.statement h2 {
  font-family: var(--mono-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(21px, 4vw, 30px); letter-spacing: .05em; line-height: 1.35; margin: 0 0 18px;
}
.statement p { color: var(--muted); margin: 0 auto; max-width: 56ch; }

/* ---- Space sections ---- */
.space { margin-bottom: 64px; }
.space-card {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.space-body { padding: 30px 32px 34px; }
.space-body h3 {
  font-family: var(--mono-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(21px, 4vw, 27px); letter-spacing: .05em; margin: 0 0 6px;
}
.space-tag {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--ink); margin: 0 0 16px;
}
.space-body p { color: var(--muted); margin: 0 0 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip {
  font-family: var(--mono-display); font-weight: 400; font-size: 9.5px;
  text-transform: uppercase; letter-spacing: .14em; color: var(--ink);
  border: 1px solid var(--stone); border-radius: 50px; padding: 6px 13px 5px;
}

/* Carousel (shared with hub) */
.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: 16 / 9; overflow: hidden;
  background: linear-gradient(135deg, #efe9e4, #f6f1ec);
}
.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); }

/* ---- Section headers ---- */
.section-head { text-align: center; padding: 26px 0 34px; }

/* ---- Floor plan ---- */
.plan-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px; margin-bottom: 18px;
}
.plan-card img, .plan-card svg { display: block; width: 100%; height: auto; }
.plan-dims {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 64px;
}

/* ---- Services ---- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 64px; }
.svc {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 24px 28px;
}
.svc h4 {
  font-family: var(--mono-display); font-weight: 800; text-transform: uppercase;
  font-size: 14px; letter-spacing: .08em; margin: 0 0 12px;
}
.svc .svc-lead {
  font-family: var(--serif); font-style: italic; font-size: 16.5px;
  color: var(--ink); margin: 0 0 12px; line-height: 1.5;
}
.svc p { color: var(--muted); font-size: 15px; margin: 0 0 12px; }
.svc ul { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 15px; }
.svc li { padding: 5px 0; border-top: 1px solid #f0ece6; }
.svc li:first-child { border-top: none; }
.svc li strong { color: var(--ink); font-weight: 600; }
.svc-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 18px; }
.svc-photo img { display: block; width: 100%; height: auto; }

/* ---- Pricing ---- */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 14px; }
.price-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 26px 24px;
}
.price-card h4 {
  font-family: var(--mono-display); font-weight: 800; text-transform: uppercase;
  font-size: 13px; letter-spacing: .08em; margin: 0 0 14px;
}
.pgroup {
  font-family: var(--sans); font-weight: 600; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
  margin: 18px 0 4px;
}
.pgroup:first-of-type { margin-top: 2px; }
.row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 8px 0; border-top: 1px solid #f0ece6; font-size: 15px; }
.row:first-of-type, .pgroup + .row { border-top: none; }
.row .l { color: var(--muted); }
.row .r {
  font-family: var(--mono-display); font-weight: 400; font-size: 11px;
  text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; color: var(--ink);
}
.pricing-note { text-align: center; color: var(--muted); font-size: 13.5px; margin: 0 0 64px; }

/* ---- Testimonials ---- */
.quotes { text-align: center; padding: 8px 0 64px; }
.quotes blockquote {
  font-family: var(--serif); font-style: italic; font-size: clamp(19px, 3.4vw, 24px);
  line-height: 1.55; margin: 0 auto 10px; max-width: 620px;
}
.quotes .mark { font-family: var(--mono-display); font-size: 22px; letter-spacing: .2em; color: var(--stone); display: block; margin-bottom: 14px; }

/* ---- Neighborhood ---- */
.hood { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 72px; }
.hood h4 {
  font-family: var(--mono-display); font-weight: 800; text-transform: uppercase;
  font-size: 13px; letter-spacing: .08em; margin: 0 0 10px;
}
.hood p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---- CTA ---- */
.cta {
  text-align: center; background: var(--ink); color: var(--cream);
  border-radius: var(--radius); padding: 64px 28px; margin-bottom: 40px;
}
.cta h2 {
  font-family: var(--mono-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(26px, 5.6vw, 42px); letter-spacing: .04em; line-height: 1.05; margin: 0 0 12px;
}
.cta p { color: #cfc9c2; margin: 0 0 26px; }
.cta .btn { color: var(--cream); border-color: var(--cream); }
.cta .btn:hover { background: var(--cream); color: var(--ink); }

.foot {
  text-align: center; margin: 0 0 44px;
  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: 720px) {
  .services { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .hood { grid-template-columns: 1fr; }
  .space-body { padding: 24px 20px 26px; }
}
