@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter.regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter.28pt-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter.28pt-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter.28pt-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #efece7;
  --cream-card: #f4f1ea;
  --ink: #17110f;
  --rust: #722b12;
  --rust-dark: #591f0c;
  --olive: #817047;
  --gold: #e3b365;
  --sage: #7fa06e;
  --border: #ddd6c8;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: 52px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}

/* Site header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo { height: 15px; }
.header-contact { display: flex; gap: 20px; }
.header-contact a {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.header-contact a:hover { color: var(--rust); }

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  padding: 40px 24px 40px;
  text-align: center;
}
.hero img.logo-hero { height: 46px; margin: 0 auto 10px; }
.hero h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.hero-rule {
  max-width: 680px;
  margin: 18px auto 22px;
  border: none;
  border-top: 1.5px solid var(--ink);
  opacity: 0.85;
}
.hero p.lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  color: #443a34;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}
.stat { background: var(--cream-card); padding: 14px 12px; text-align: center; }
.stat .num { font-size: 22px; font-weight: 700; color: var(--rust); }
.stat .label { font-size: 12.5px; color: #6b5f56; margin-top: 2px; }

.bubble-graphic {
  display: block;
  max-width: 560px;
  width: 100%;
  margin: 24px auto 0;
}

section { padding: 64px 24px; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
  color: var(--rust);
}
.section-head h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 460px;
  font-size: clamp(24px, 3.5vw, 32px);
  margin: 8px auto 0;
}
.section-head h2:first-child { margin-top: 0; }
.section-head h2::before,
.section-head h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #b9b0a3;
}
.section-head .section-sub { font-size: 15px; color: #5a4f47; margin: 8px 0 0; }

/* Services */
.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
}
.service-num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 { margin: 0 0 6px; font-size: 17px; }
.service-card p { margin: 0; font-size: 14.5px; color: #5a4f47; }

/* Listings carousel */
#listings { padding-top: 30px; }
.listings-carousel-wrap {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}
.listings-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  scrollbar-width: none;
}
.listings-carousel::-webkit-scrollbar { display: none; }

.listing-card {
  flex: 0 0 300px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-card);
  scroll-snap-align: start;
}
.listing-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}
.listing-slider .slider-img { width: 100%; height: 100%; object-fit: cover; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}
.slider-btn.slider-prev { left: 8px; }
.slider-btn.slider-next { right: 8px; }
.slider-counter {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
}
.listing-body { padding: 16px 18px 20px; text-align: center; }
.listing-area { color: var(--ink); font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.listing-airbnb-link {
  display: inline-block;
  text-decoration: none;
  color: var(--rust);
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 12px;
}
.listing-airbnb-link:hover { color: var(--rust-dark); }
.listing-specs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.listing-specs span { font-size: 12.5px; color: #5a4f47; font-weight: 500; }

@media (max-width: 720px) {
  body { padding-top: 68px; }
  .hero img.logo-hero { height: 34px; }
  .header-logo { height: 16px; }
  .header-contact { flex-direction: column; align-items: flex-end; gap: 2px; }
  .header-contact a { font-size: 11px; }

  section { padding: 40px 12px; }
  .wrap { padding: 0 12px; }

  /* Keep the same column counts as desktop, just compacted to fit */
  .stat { padding: 8px 4px; }
  .stat .num { font-size: 14px; }
  .stat .label { font-size: 8.5px; line-height: 1.25; margin-top: 1px; }

  .services-grid { gap: 8px; }
  .service-card { padding: 12px 10px; gap: 8px; }
  .service-num { width: 22px; height: 22px; font-size: 10px; }
  .service-card h3 { font-size: 12.5px; margin: 0 0 4px; }
  .service-card p { font-size: 10.5px; line-height: 1.4; }

  .fee-box { padding: 10px 6px; }
  .fee-box .fee-amount { font-size: 15px; }
  .fee-box .fee-amount span { font-size: 9px; }
  .fee-box .fee-label { font-size: 9px; }

  .listing-card { flex: 0 0 78vw; }
}
