*{box-sizing:border-box}
:root{
  --dark:#071326;
  --navy:#0b2b57;
  --gold:#d6ad37;
  --cream:#fff7e8;
  --text:#243044;
  --muted:#667085;
  --white:#ffffff;
}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fffaf0;
  line-height:1.7;
}
a{color:inherit}
.hero{
  min-height:94vh;
  background:
    linear-gradient(90deg, rgba(7,19,38,.92), rgba(7,19,38,.52)),
    url("assets/facade-hotel.png") center/cover no-repeat;
  color:white;
}
.nav{
  max-width:1200px;
  margin:auto;
  padding:18px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.5px;
}
.brand img{
  width:70px;
  height:70px;
  object-fit:contain;
  border-radius:50%;
  background:white;
}
.nav-links{display:flex; gap:22px; flex-wrap:wrap}
.nav-links a{
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  opacity:.95;
}
.hero-content{
  max-width:900px;
  padding:100px 22px 130px;
  margin:auto;
}
.eyebrow,.section-label{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  font-weight:900;
}
h1,h2,h3{
  font-family:Georgia, 'Times New Roman', serif;
  line-height:1.12;
  margin:0 0 18px;
}
h1{font-size:clamp(42px,7vw,82px)}
h2{font-size:clamp(32px,4vw,52px); color:var(--dark)}
h3{font-size:26px; color:var(--dark)}
.hero-text{font-size:20px; max-width:720px; color:#e5e7eb}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-top:30px}
.btn,.mini-btn{
  display:inline-block;
  text-decoration:none;
  border-radius:999px;
  font-weight:900;
  transition:.2s;
}
.btn{padding:14px 24px}
.primary{background:var(--gold); color:#071326}
.secondary{border:1px solid rgba(255,255,255,.55); color:white}
.dark{background:var(--dark); color:white; margin-top:10px}
.btn:hover,.mini-btn:hover{transform:translateY(-2px)}
.section{
  max-width:1200px;
  margin:auto;
  padding:82px 22px;
}
.intro{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:42px;
  align-items:start;
}
.intro p:last-child{font-size:19px; color:var(--muted)}
.features{
  max-width:1200px;
  margin:-38px auto 0;
  padding:0 22px 30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.feature-card{
  background:white;
  box-shadow:0 18px 40px rgba(7,19,38,.14);
  border:1px solid rgba(214,173,55,.28);
  border-radius:22px;
  padding:28px;
  text-align:center;
  font-weight:900;
}
.rooms{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:28px;
}
.room-card{
  background:white;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(7,19,38,.13);
  border:1px solid #efe5cf;
}
.room-card.featured{outline:3px solid rgba(214,173,55,.48)}
.room-card img{width:100%; height:280px; object-fit:cover; display:block}
.room-body{padding:25px}
.room-body ul{padding-left:20px; color:var(--muted)}
.price{
  margin:18px 0;
  color:var(--navy);
  font-weight:900;
  font-size:18px;
}
.mini-btn{
  padding:11px 18px;
  background:var(--navy);
  color:white;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  align-items:center;
}
.split img{
  width:100%;
  max-height:620px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 18px 45px rgba(7,19,38,.14);
}
.reverse img{order:1}
.reverse div{order:2}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:24px;
}
.menu-grid span{
  background:white;
  border:1px solid #eadfca;
  border-radius:16px;
  padding:16px;
  font-weight:900;
}
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:24px;
}
.gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 12px 30px rgba(7,19,38,.12);
}
.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
}
.contact-card{
  background:var(--dark);
  color:white;
  border-radius:30px;
  padding:34px;
  box-shadow:0 18px 45px rgba(7,19,38,.2);
}
.contact-card a{color:white}
.full{text-align:center; width:100%; margin-top:14px}
footer{
  background:#06101f;
  color:#cbd5e1;
  text-align:center;
  padding:40px 20px;
}
footer img{
  width:130px;
  height:130px;
  object-fit:contain;
  border-radius:50%;
  background:white;
  margin-bottom:16px;
}

@media(max-width:900px){
  .intro,.split,.contact{grid-template-columns:1fr}
  .rooms{grid-template-columns:1fr}
  .features{grid-template-columns:repeat(2,1fr); margin-top:0}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .nav{align-items:flex-start; flex-direction:column}
}
@media(max-width:520px){
  .features,.gallery,.menu-grid{grid-template-columns:1fr}
  .hero-content{padding-top:55px}
  .brand span{font-size:14px}
}
