:root{
  --bg:#f7f8fb;
  --card:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --blue:#2563eb;
  --green:#16a34a;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}
a{text-decoration:none;color:inherit}
img{display:block;width:100%}

.container{
  max-width:1120px;
  margin:auto;
  padding:20px;
}

.site-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:12px 0 18px;
}

.logo{
  margin:0;
  font-size:28px;
  letter-spacing:.2px;
}

.header-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  background:var(--blue);
  color:#fff;
  padding:12px 18px;
  border-radius:10px;
  font-weight:700;
  transition:all .25s ease;
}

.btn:hover{
  opacity:.95;
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(37,99,235,.15);
}

.btn-green{background:var(--green)}
.btn-light{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
}

.section{margin-top:44px}
.section-tight{margin-top:22px}

.section-title{
  margin:0 0 16px;
  font-size:30px;
  line-height:1.15;
}

.section-lead{
  margin:0 0 22px;
  color:var(--muted);
  max-width:760px;
}

.hero-wrap{
  margin-top:6px;
  margin-bottom:28px;
}

.hero-banner{
  background:
    linear-gradient(rgba(0,0,0,.38),rgba(0,0,0,.38)),
    url('../images/hero-exterior.jpeg') center/cover;
  min-height:520px;
  position:relative;
  border-radius:24px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
}

.hero-floating-card{
  position:absolute;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  width:82%;
  max-width:760px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(8px);
  border-radius:18px;
  padding:30px 34px;
  box-shadow:0 16px 45px rgba(0,0,0,.15);
  text-align:center;
}

.eyebrow{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:#eef4ff;
  color:var(--blue);
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
}

.hero-floating-card h1{
  margin:0;
  font-size:44px;
  line-height:1.05;
}

.hero-floating-card p{
  margin:10px auto 18px;
  color:#4b5563;
  font-size:17px;
  max-width:640px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.trust-row{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.amenities-left{
  justify-content:flex-start;
}

.trust-chip{
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  color:#374151;
}

.facts{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.fact{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px 18px;
  box-shadow:var(--shadow);
  transition:all .25s ease;
}

.fact:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 35px rgba(0,0,0,.09);
}

.fact strong{
  display:block;
  font-size:15px;
  margin-bottom:4px;
}

.fact span{
  color:var(--muted);
  font-size:14px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:var(--card);
  padding:20px;
  border-radius:16px;
  box-shadow:var(--shadow);
  border:1px solid rgba(229,231,235,.7);
  transition:all .25s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 35px rgba(0,0,0,.09);
}

.card h3{
  margin:14px 0 8px;
  font-size:20px;
}

.card p{
  margin:0;
  color:var(--muted);
}

.card img{
  border-radius:12px;
  aspect-ratio:1:2;
  object-fit:cover;
}

.room-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}

.tag{
  font-size:12px;
  background:#f3f4f6;
  color:#374151;
  padding:6px 10px;
  border-radius:999px;
}

.card-cta{
  display:inline-block;
  margin-top:16px;
  color:var(--blue);
  font-weight:700;
  padding:10px 14px;
  border:1px solid #dbeafe;
  background:#eff6ff;
  border-radius:10px;
  transition:all .25s ease;
}

.card-cta:hover{
  background:#dbeafe;
  transform:translateY(-1px);
}

.gallery-layout{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:14px;
}

.gallery-feature img{
  height:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow);
  transition:all .25s ease;
}

.gallery-side{
  display:grid;
  grid-template-columns:1fr 0fr;
  gap:14px;
}

.gallery-side img{
  aspect-ratio:1/4;
  object-fit:cover;
  border-radius:16px;
  box-shadow:var(--shadow);
  transition:all .25s ease;
}

.gallery-grid img{
  aspect-ratio:1/1.5;
  object-fit:cover;
  border-radius:16px;
  box-shadow:var(--shadow);
  transition:all .25s ease;
}

.gallery-feature img:hover,
.gallery-side img:hover,
.gallery-grid img:hover{
  transform:scale(1.02);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:14px;
}

.booking-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:20px;
}

.booking-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:all .25s ease;
}

.booking-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 35px rgba(0,0,0,.09);
}

.booking-card.highlight{
  background:linear-gradient(135deg,#eff6ff,#ffffff);
  border-color:#bfdbfe;
}

.booking-card h3{
  margin:0 0 10px;
  font-size:22px;
}

.booking-card p{
  margin:0;
  color:var(--muted);
}

.booking-card .btn{
  margin-top:16px;
}

.booking-note{
  margin-top:10px !important;
  font-size:14px;
  color:var(--blue) !important;
  font-weight:700;
}

.booking-strip{
  text-align:center;
  padding:30px;
}

.booking-strip-title{
  margin-bottom:10px;
}

.booking-strip-lead{
  max-width:700px;
  margin:0 auto 18px!important;
}

.inline-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.contact{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:20px;
}

.contact p{
  margin:0 0 12px;
  color:var(--muted);
}

.contact a.link{
  color:var(--blue);
}

.contact-title{
  font-size:28px;
  margin-bottom:10px;
}

.contact-list{
  display:grid;
  gap:14px;
  margin-top:12px;
}

.contact-item{
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.contact-item strong{
  display:block;
  font-size:14px;
  margin-bottom:4px;
  color:#374151;
}

iframe{
  border:0;
  border-radius:14px;
  width:100%;
}

.site-footer{
  border-top:1px solid var(--line);
  margin-top:50px;
  padding-top:24px;
  padding-bottom:16px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:20px;
}

.footer-heading{
  display:block;
  font-size:18px;
  margin-bottom:8px;
}

.footer-text{
  margin:0;
  color:var(--muted);
}

.footer-link{
  margin:0 0 8px;
}

.footer-copy{
  margin-top:20px;
  color:#9ca3af;
  font-size:13px;
}

@media(max-width:980px){
  .facts{grid-template-columns:repeat(2,1fr)}
  .cards{grid-template-columns:1fr 1fr}
  .booking-grid{grid-template-columns:1fr}
  .gallery-layout{grid-template-columns:1fr}
  .gallery-feature img{min-height:320px}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .contact{grid-template-columns:1fr}
  .hero-floating-card{
    width:88%;
    padding:24px 22px;
  }
  .hero-floating-card h1{font-size:34px}
}

@media(max-width:640px){
  .container{padding:16px}
  .site-header{
    flex-direction:column;
    align-items:flex-start;
  }
  .logo{font-size:24px}
  .section{margin-top:34px}
  .section-title{font-size:24px}

  .hero-banner{
    min-height:clamp(420px,75vh,560px);
    border-radius:18px;
    padding:18px;
  }

  .hero-floating-card{
    position:static;
    transform:none;
    width:100%;
    max-width:none;
    padding:22px 18px;
    border-radius:14px;
  }

  .hero-floating-card h1{
    font-size:28px;
    line-height:1.12;
  }

  .hero-floating-card p{
    font-size:15px;
    margin:8px 0 16px;
  }

  .hero-buttons{
    flex-direction:column;
    gap:10px;
  }

  .hero-buttons .btn,
  .header-actions .btn{
    width:100%;
    text-align:center;
  }

  .header-actions{
    width:100%;
    flex-direction:column;
  }

  .facts,
  .cards,
  .gallery-side,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .inline-buttons{
    flex-direction:column;
  }

  .inline-buttons .btn{
    width:100%;
    text-align:center;
  }
}