:root{
  --bg: #f3f6fb;
  --ink: #0e1215;
  --muted:#6e7a8a;
  --blue0:#0a4ed6;
  --blue1:#1264ea;
  --blue2:#2a7cf3;
  --cta:#1f66ff;
  --ctaText:#fff;
  --age:#ff4639;
  --soft-blue:#e7f1ff;
  --icon-stroke:#b7c6d8;
  --icon-fill:#c9d7e6;
  --thumb-border:#c9d7e6;
  --footer-bg:#0c243b;         
  --footer-fg:#dbe9ff;         
  --link-fg:#cfe0ff;
  --icon-stroke:#9fb2c8;
  --icon-fill:#8fa3ba;
  --hero-border:#ff3bb6; 
  --navy:#0f2342;
  --panel:#e9eef6;
  --frame:#d4d8e1;
}

*{ box-sizing: border-box }

html,body{ height:100% }

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font: 500 16px/1.6 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.age-bar{
  background: var(--age);
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  padding: 14px 0;
}

.site-header{
  background: #fff;
  box-shadow: 0 1px 0 rgba(10,12,14,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 22px 12px;
}

.brand{
  color:var(--ink);
  text-decoration:none;
  font-size: 28px;
  font-weight: 800;
}

.main-nav{ 
  display:block
}

.nav-list{
  display:flex; 
  align-items:center; 
  gap:28px;
  list-style:none; 
  margin:0; 
  padding:0;
}

.nav-list a{
  color:#2a2f37; 
  text-decoration:none; 
  font-weight:700;
  font-size: 14px;
}

.nav-list a:hover{ 
  color:#0f1721 
}

.btn-cta{
  display:inline-block; 
  padding:10px 16px;
  background: var(--cta); 
  color:var(--ctaText)!important;
  border-radius:8px; font-weight:800;
}

.nav-toggle{
  display:none;
  flex-direction:column; 
  gap:5px;
  background:transparent; 
  border:0; 
  padding:6px; 
  margin-left:auto;
}

.nav-toggle .line{ 
  width:24px; 
  height:2px; 
  background:#1a1a1a; 
  display:block }

.hero{
  position: relative;
  overflow: hidden;
  margin: 8px 0 40px;
  min-height: 520px;

  background:
    url('../images/bg.png') center / cover no-repeat,
    radial-gradient(1200px 600px at 85% -20%, rgba(255,255,255,.08) 0 60%, transparent 60%),
    radial-gradient(900px 520px at 90% 40%, rgba(255,255,255,.06) 0 60%, transparent 60%),
    linear-gradient(135deg, var(--blue0) 0%, var(--blue1) 50%, var(--blue2) 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap: 24px;
  min-height: 520px;
  padding: 38px 14px;
}

.hero-title{
  color:#fff; margin:0 0 14px;
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing:.3px;
}

.hero-sub{
  color:#eaf1ff;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  margin:0;
}

.hero-art{
  display:flex; 
  justify-content:center; 
  align-items:flex-end;
}

.hero-img{
  width: 100%; 
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(5,10,40,.35));
  border-radius: 18px; 
}

.hero-squares{
  position:absolute; 
  left:14px; 
  top:18px; 
  bottom:18px; 
  width: 200px;
  display:grid; 
  place-content:start; 
  align-content:start;
  grid-template-columns: repeat(2, 80px);
  grid-auto-rows: 80px; gap: 14px;
  opacity:.18;
}

.hero-squares i{
  display:block; 
  background:#fff;
  width:80px; 
  height:80px; 
  border-radius:22px;
  transform: rotate(45deg);
}

@media (max-width: 992px){
  .hero-grid{ grid-template-columns: 1fr; text-align:left }
  .hero-art{ order: -1; justify-content: flex-end }
  .hero-squares{ opacity:.12; left:8px; grid-template-columns: repeat(2, 64px); grid-auto-rows:64px }
  .hero-squares i{ width:64px; height:64px }
}

@media (max-width: 880px){
  .nav-toggle{ display:flex }
  .main-nav{
    position: absolute; inset: auto 0 0 0;
    background:#fff; border-top:1px solid rgba(10,12,14,.07);
    transform: translateY(-100%); opacity:0; pointer-events:none;
    transition: .25s ease;
  }
  .main-nav.open{
    transform: translateY(0); opacity:1; pointer-events:auto;
  }
  .nav-list{
    flex-direction:column; align-items:flex-start; gap:18px;
    padding:16px 16px 20px; margin:0;
  }
}

.bg-soft-blue{ 
  background:var(--soft-blue); 
}

.thumb{
      width:110px; height:82px;
      border-radius: 14px;
      border:3px solid var(--thumb-border);
      background:#d6e2f0;
      display:grid; place-items:center;
}

.thumb svg{ 
  width:60%; height:60%; opacity:.65
 }

.card-soft{
  background:var(--soft-blue);
  border:0;
  border-radius:14px;
}

.icon-box{
  width:86px; height:66px;
  border-radius:10px;
  border:3px solid var(--icon-stroke);
  background:#dfe8f2;
  display:grid; place-items:center;
}

.icon-box svg{ 
  width:64%; height:64%; 
}

.site-footer{
  background:var(--footer-bg);
  color:var(--footer-fg);
}

.site-footer .nav .nav-link{
  color:var(--link-fg);
  font-weight:500;
}

.site-footer .nav .nav-link:hover{
  color:#ffffff;
}

.mini-tile{
  width:94px; height:70px;
  border-radius:10px;
  border:3px solid var(--icon-stroke);
  background:rgba(255,255,255,.02);
  display:grid; place-items:center;
  margin-inline:auto;
}

.mini-tile svg{ 
  width:64%; height:64%; 
}

.footer-note{
  color:#c9dbf8;
  font-size:.9rem;
}

.contact-wrap{
  max-width: 880px;                 
  margin: 6rem auto;
  padding: 2.25rem 2.25rem 2rem;
  background:#fff;
  border-radius: 1rem;
  box-shadow:
    0 2px 8px rgba(16,24,40,.04),
    0 24px 60px rgba(16,24,40,.08);
}

.contact-title{
  font-weight: 700;
  color:#0b2a5b;                    
}

.contact-desc{
  color:#475467;                   
  margin-bottom: 1.25rem;
}

.form-control{
  border-color:#e5e7eb;
  height: 48px;
  border-radius:.5rem;
}

textarea.form-control{
  height: 132px;
  resize: vertical;
}

.btn-send{
  padding:.65rem 1.25rem;
  border-radius:.6rem;
  font-weight:600;
}

.btn-send svg{
  margin-left:.5rem;
}

.hero-hotel{
  position: relative;
  min-height: 100vh;                     
  background: url("../images/hotel-bg.jpeg")
              center/cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-hotel::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(240,240,245,.65);
}

.hero-hotel::after{
  content:"";
  position:absolute;
  inset:6%;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.02);
}

.hero-copy{
  position: relative;                    
  z-index: 2;
  color: #121212;
}

.hero-title{
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: .3px;
}

.hero-sub{
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  opacity: .9;
}

.listing{
  background:var(--panel);
  border-radius:18px;
  padding:1.25rem;
  box-shadow:0 2px 0 rgba(255,255,255,.05) inset;
}

.thumb{
  position:relative;
  height:200px;              
  border-radius:22px;
  background:linear-gradient(#d9dbe2,#d9dbe2);
}

.thumb::after{
  content:"";
  position:absolute; 
  inset:18px;
  border:14px solid var(--frame);
  border-radius:16px;
}

.thumb svg{
  position:relative; 
  z-index:2;
  width:72%; 
  height:72%;
  display:block; 
  margin:auto; 
  margin-top:7%;
  opacity:.55;
}

.visit-btn{
  font-size:.65rem; padding:.25rem .45rem
}

.rg-wrap{
  background:#2e4158;
  color:#eaf1ff;
  padding:3.5rem 1rem 3rem;
  text-align:center;
}

.copyright{
  color:#cbd5e1;
  text-align:center;
  padding:1.25rem 0 2.5rem;
  font-size:.9rem;
}

@media (max-width:576px){
  .thumb{height:160px; margin-bottom:.75rem}
}