:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --alt: #f5f6f8;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --shadow: 0 18px 40px rgba(17,24,39,.10);
  --radius: 18px;
  --radius2: 28px;
  --accent: #111827;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
.container{ width:min(1120px, calc(100% - 32px)); margin:0 auto; }

h1,h2,h3{ letter-spacing: -0.02em; }
h1{ font-family: "Cormorant Garamond", "Georgia", serif; font-weight: 700; }
h2{ font-family: "Cormorant Garamond", "Georgia", serif; font-weight: 700; }
h3{ font-weight: 700; }

.section{ padding: 86px 0; }
.section--alt{ background: var(--alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.kicker{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--text);
  background: var(--text);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s ease, opacity .12s ease;
}
.btn:hover{ transform: translateY(-1px); opacity: .94; }
.btn--ghost{
  background: transparent;
  color: var(--text);
}
.btn--small{ padding: 10px 14px; }
.btn--block{ width:100%; }

.header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap: 12px; }
.brand__mark{
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display:grid; place-items:center;
  font-weight: 900;
  background: #fff;
}
.brand__text small{ display:block; color: var(--muted); margin-top: 2px; }

.nav{ display:flex; gap: 14px; align-items:center; }
.nav a{ color: var(--muted); font-weight: 700; font-size: 14px; }
.nav a:hover{ color: var(--text); }

.nav__toggle{
  display:inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}
.nav__toggle span{ width: 22px; height: 2px; background: var(--text); opacity: .85; }
@media (min-width: 920px){ .nav__toggle{ display:none; } }
@media (max-width: 919px){
  .nav{
    position: fixed;
    left: 16px; right: 16px;
    top: 70px;
    display:none;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav.is-open{ display:flex; }
  .nav a{ width:100%; padding: 10px 10px; border-radius: 12px; }
  .nav a:hover{ background: var(--alt); }
}

.hero{
  position: relative;
  min-height: 78vh;
  display:grid;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.90) 72%, rgba(255,255,255,1) 100%),
    url("../img/gallery-01.jpg") center/cover no-repeat;
}
.hero__content{
  position: relative;
  padding: 90px 0 52px;
}
.hero h1{ font-size: clamp(40px, 5vw, 64px); margin: 10px 0 10px; line-height: 1.02; }
.hero p{ max-width: 72ch; color: rgba(17,24,39,.82); margin: 0 0 18px; font-size: 16px; }
.hero__cta{ display:flex; flex-wrap:wrap; gap: 12px; margin-top: 10px; }
.hero__chips{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 18px; }
.chip{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(17,24,39,.86);
}

.grid-3{ display:grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 920px){ .grid-3{ grid-template-columns: repeat(3,1fr); } }

.feature{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17,24,39,.06);
}
.feature__img img{ width:100%; aspect-ratio: 16/10; object-fit: cover; }
.feature__body{ padding: 18px; }
.feature__body h3{ margin: 0 0 8px; }
.feature__body p{ margin: 0; color: var(--muted); }

.split{
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items:center;
}
@media (min-width: 920px){ .split{ grid-template-columns: 1.1fr .9fr; } }
.split__card{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.split__card img{ width:100%; aspect-ratio: 16/10; object-fit: cover; }
.split__body{ padding: 22px; }
.meta{ display:flex; flex-wrap:wrap; gap: 12px; margin-top: 12px; color: var(--muted); font-weight: 800; }

.gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 920px){ .gallery{ grid-template-columns: repeat(4, 1fr); } }
.gallery__item{
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow:hidden;
  padding:0;
  cursor:pointer;
  background: #fff;
}
.gallery__item img{ width:100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .16s ease; }
.gallery__item:hover img{ transform: scale(1.03); }

.form{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius2);
  padding: 18px;
}
label{ display:block; font-weight: 800; font-size: 13px; color: var(--muted); }
input, textarea{
  width:100%;
  margin-top: 8px;
  margin-bottom: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{ border-color: #111827; }

.lightbox{
  position: fixed;
  inset:0;
  display:none;
  background: rgba(0,0,0,.72);
  z-index: 100;
  padding: 22px;
}
.lightbox.is-open{ display:grid; place-items:center; }
.lightbox__img{ max-width:min(1100px, 96vw); max-height: 86vh; border-radius: 18px; }
.lightbox__close{
  position: fixed;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 26px;
  cursor:pointer;
}

.footer{
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.sticky-wrap{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display:flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-end;
}
.sticky{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--text);
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow);
}
.sticky--wa{
  background: #fff;
  color: var(--text);
}


/* Sticky / Floating CTAs */
.sticky-cta{
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  display: none;
  gap: 12px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  z-index: 9999;
}
.sticky-cta__btn{
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(17,24,39,.12);
  border: 1px solid rgba(17,24,39,.08);
}
.sticky-cta__btn--book{
  background: #111827;
  color: #fff;
}
.sticky-cta__btn--wa{
  background: #ffffff;
  color: #111827;
}

/* Desktop floating buttons */
.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.fab__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.96);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.fab__btn--book{
  background: #111827;
  color: #fff;
  border-color: rgba(17,24,39,.08);
}
.fab__btn--wa{
  background: rgba(255,255,255,.96);
}
.fab__icon{
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(17,24,39,.06);
}
.fab__btn--book .fab__icon{
  background: rgba(255,255,255,.18);
}

/* Responsive behavior */
@media (max-width: 820px){
  .fab{ display: none; }
  .sticky-cta{ display: flex; }
  body{ padding-bottom: 84px; } /* room for sticky bar */
}
