/* Belmont Horgen — design sketch. Brand pulled from the real site:
   Inter, ink #1c1c1c, gold #b7a880, cream #f7f5ef. */

:root {
  --ink: #1c1c1c;
  --ink-soft: #3a3a38;
  --gold: #b7a880;
  --gold-dark: #a3946b;
  --cream: #f7f5ef;
  --cream-2: #efe9dc;
  --sand: #e8e1d1;
  --muted: #767676;
  --white: #fff;
  --maxw: 1180px;
  --r: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 56ch; margin-top: 18px; }
.lead--wide { max-width: 70ch; }

.section { padding: clamp(60px, 9vw, 120px) 0; }
.section--tight { padding-bottom: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  text-decoration: none; border: 1px solid transparent;
  border-radius: var(--r); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--lg { padding: 16px 38px; font-size: 1rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  transition: background .3s;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; gap: 28px;
}
.nav__logo { height: 30px; width: auto; }
.nav__links { display: flex; gap: 26px; margin-left: 12px; flex: 1; }
.nav__links a {
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: 0.92rem; font-weight: 500; transition: color .2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__actions { display: flex; align-items: center; gap: 18px; }

.lang { display: flex; align-items: center; gap: 4px; }
.lang__btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.55); font: inherit; font-size: 0.85rem; font-weight: 600;
  padding: 2px; transition: color .2s;
}
.lang__btn.is-active { color: var(--gold); }
.lang__sep { color: rgba(255,255,255,.3); }

.nav__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--white); transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; color: var(--white); }
.hero__media, .hero__overlay { position: absolute; inset: 0; overflow: hidden; }
.hero__media { background: #0d0d0d; }                /* dark base behind/around the video */
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: transparent; opacity: 0; animation: heroFadeIn 1.2s ease .1s forwards; }
@keyframes heroFadeIn { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero__video { opacity: 1; animation: none; } }
/* Darken behind the text for legibility over any frame */
.hero__overlay { background: linear-gradient(to top, rgba(12,12,12,.95) 0%, rgba(12,12,12,.55) 50%, rgba(12,12,12,.55) 100%); }
.hero__content { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 24px 86px; width: 100%; }
.hero__content .eyebrow { color: var(--gold); }
.hero__sub { font-size: 1.15rem; margin-top: 18px; max-width: 46ch; color: rgba(255,255,255,.9); }
.hero h1, .hero__sub, .hero__content .eyebrow, .hero__link { text-shadow: 0 2px 16px rgba(0,0,0,.55); }

/* Immediate date-search bar */
.searchbar {
  margin-top: 32px; max-width: 760px;
  background: rgba(255,255,255,.97); border-radius: 10px; padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr auto auto; gap: 12px; align-items: end;
  box-shadow: 0 22px 50px rgba(28,28,28,.28);
}
.searchbar__field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.searchbar__field label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.searchbar__field input, .searchbar__field select {
  border: 1px solid var(--sand); border-radius: var(--r); padding: 11px 12px;
  font: inherit; font-size: 0.92rem; color: var(--ink); background: #fff;
}
.searchbar__field--guests select { min-width: 80px; }
.searchbar__btn { height: 44px; }
.hero__link { display: inline-block; margin-top: 18px; color: rgba(255,255,255,.9); text-decoration: none; font-weight: 500; }
.hero__link:hover { color: var(--gold); }

/* ---------- Property ---------- */
.property__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.property__media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; border-radius: var(--r); }

.stats { display: flex; gap: 40px; margin-top: 36px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-size: 1.9rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.stat__lbl { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

.amenities {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  margin-top: clamp(48px, 7vw, 80px);
  border-top: 1px solid var(--sand); padding-top: clamp(40px, 6vw, 64px);
}
.amenity { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.amenity img { width: 40px; height: 40px; opacity: .85; }
.amenity span { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); max-width: 16ch; }

/* ---------- Gallery ---------- */
.gallery__row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; margin-top: 36px; }
.gallery__row img { width: 100%; height: 420px; object-fit: cover; }

/* ---------- Highlights ---------- */
.highlights { background: var(--cream-2); }
.highlights__inner { max-width: 760px; }

/* ---------- Location ---------- */
.chips__label { font-weight: 600; margin: 36px 0 14px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  background: var(--white); border: 1px solid var(--sand);
  padding: 8px 16px; border-radius: 100px; font-size: 0.9rem; color: var(--ink-soft);
}
.map { margin-top: 44px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--sand); }
.map__frame { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(0.2); }

/* ---------- Booking ---------- */
.booking { background: var(--ink); color: var(--white); text-align: center; }
.booking__inner { max-width: 720px; margin: 0 auto; }
.booking h2 { color: var(--white); }

.slot {
  margin-top: 40px; background: rgba(255,255,255,.05);
  border: 2px dashed rgba(183,168,128,.55); border-radius: 8px;
  padding: 40px 28px; position: relative;
}
.slot__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; padding: 5px 14px; border-radius: 100px;
}
.slot__title { font-size: 1.2rem; font-weight: 600; margin-bottom: 22px; }
.slot__fakefields { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 26px; }
.slot__fakefields span {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 12px 22px; border-radius: var(--r); font-size: 0.9rem; min-width: 120px; color: rgba(255,255,255,.75);
}
.slot-note { display: block; margin-top: 20px; font-size: 0.8rem; color: rgba(255,255,255,.5); font-style: italic; }
.map .slot-note { color: var(--muted); }

/* ---------- Newsletter ---------- */
.newsletter { background-size: cover; background-position: center; color: var(--white); text-align: center; }
.newsletter__inner { max-width: 640px; margin: 0 auto; }
.newsletter h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 14px; }
.newsletter p { font-size: 1.4rem; font-weight: 500; margin-bottom: 28px; line-height: 1.4; }
.newsletter__form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter__form input {
  flex: 1; padding: 14px 18px; border: none; border-radius: var(--r);
  font: inherit; font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.footer { background: #161616; color: rgba(255,255,255,.7); }
.footer__inner { display: flex; flex-wrap: wrap; gap: 48px; padding: 64px 24px 40px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col { flex: 1; min-width: 160px; }
.footer__logo { height: 34px; width: auto; margin-bottom: 8px; }
.footer__col a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 0.92rem; }
.footer__col a:hover { color: var(--gold); }
.footer__h { font-weight: 600; color: var(--white); margin-bottom: 4px; }
.footer__col--badge { align-items: flex-end; justify-content: center; }
.footer__badge { width: 96px; height: auto; opacity: .85; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 24px;
  display: flex; justify-content: space-between; max-width: var(--maxw); margin: 0 auto;
  font-size: 0.82rem; color: rgba(255,255,255,.45);
}
.footer__sketch { color: var(--gold-dark); }

/* ---------- Apartment cards ---------- */
.apartments { margin-top: clamp(48px, 7vw, 80px); }
.apartments__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.apartments__head h3 { font-size: 1.5rem; }
.apartments__note { font-size: 0.8rem; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--sand); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(28,28,28,.12); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(28,28,28,.78); color: #fff; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px;
}
.card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card__body h4 { font-size: 1.2rem; font-weight: 600; }
.card__meta { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 12px 0 20px; color: var(--muted); font-size: 0.9rem; }
.card__meta li { position: relative; }
.card__meta li + li::before { content: "·"; position: absolute; left: -10px; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.card__price { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.btn--sm { padding: 9px 17px; font-size: 0.85rem; }

/* ---------- Trust strip ---------- */
.trust { background: var(--cream-2); border-top: 1px solid var(--sand); }
.trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 28px 24px; }
.trust__rating { display: flex; align-items: center; gap: 12px; }
.trust__rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.trust__rating p { font-size: 0.95rem; color: var(--ink-soft); }
.trust__partners { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.trust__label { font-size: 0.85rem; color: var(--muted); margin-right: 4px; }
.ota { display: inline-flex; align-items: center; gap: 8px; border-radius: 6px; overflow: hidden; font-size: 0.82rem; font-weight: 600; color: #fff; }
.ota__name { padding: 7px 10px; }
.ota__score { padding: 7px 10px; background: rgba(255,255,255,.18); font-weight: 700; }
.ota--booking { background: #003580; }
.ota--airbnb { background: #ff385c; }
.ota--google { background: #1c1c1c; }

/* ---------- Footer payments ---------- */
.footer__pay {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 0 24px 28px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__pay-label { font-size: 0.82rem; color: rgba(255,255,255,.5); margin-right: 4px; }
.footer__pay img { height: 26px; width: auto; background: #fff; border-radius: 4px; padding: 3px 5px; }

/* ---------- Scroll reveal (only when JS adds .reveal-ready, and motion allowed) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.reveal-ready .section { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  html.reveal-ready .section.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { justify-content: space-between; }
  .nav__links.is-open {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--ink); padding: 20px 24px; gap: 18px;
  }
  .searchbar { grid-template-columns: 1fr 1fr; }
  .searchbar__btn { grid-column: 1 / -1; }
  .property__grid { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .gallery__row { grid-template-columns: 1fr 1fr; }
  .gallery__row img { height: 240px; }
  .gallery__row img:first-child { grid-column: 1 / -1; height: 300px; }
  .stats { gap: 28px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .trust__inner { flex-direction: column; align-items: flex-start; }
  .newsletter__form { flex-direction: column; }
  .footer__col--badge { align-items: flex-start; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .searchbar { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .gallery__row { grid-template-columns: 1fr; }
  .gallery__row img, .gallery__row img:first-child { height: 220px; }
}
