:root{
  --bg: #ffffff;
  --bg-soft: #fcfbf8;
  --text: #1d1d1f;
  --muted: #6f6a62;
  --line: rgba(0,0,0,.08);
  --white: #ffffff;
  --gold: #b88a2a;
  --gold-soft: #d8b56a;
  --gold-light: rgba(184,138,42,.10);
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --shadow-soft: 0 6px 20px rgba(0,0,0,.04);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  margin:0;
  font-family:"Inter",sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container{
  width:min(calc(100% - 32px), var(--container));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-.02em;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  background:#fff;
  border:1.5px solid var(--gold);
}

.brand small{
  display:block;
  font-weight:600;
  color:var(--muted);
  letter-spacing:0;
  font-size:.78rem;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.pill-link,
.hero-chip,
.eyebrow{
  background:#fff;
  border:1.5px solid var(--gold);
  color:var(--text);
  border-radius:999px;
  box-shadow:none;
}

.pill-link,
.btn{
  border-radius:999px;
  padding:12px 18px;
  font-weight:600;
  transition:.25s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.pill-link:hover{
  background:var(--gold-light);
  transform:translateY(-1px);
}

.btn{
  padding:13px 20px;
  font-weight:700;
  background:var(--gold);
  color:#fff;
  border:1px solid var(--gold);
  box-shadow:none;
}

.btn:hover{
  background:#a6791f;
  border-color:#a6791f;
  transform:translateY(-1px);
}

.hero{
  padding:30px 0 24px;
}

.hero-shell{
  border-radius:40px;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.70) 38%, rgba(255,255,255,.20) 67%),
    url('https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  min-height:720px;
  border:1px solid rgba(0,0,0,.05);
  box-shadow:var(--shadow);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:end;
  padding:38px;
  min-height:720px;
}

.hero-copy{
  color:var(--text);
  max-width:760px;
  padding-top:70px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  font-size:.92rem;
  font-weight:600;
}

.hero h1{
  margin:18px 0 14px;
  font-size:clamp(2.8rem,6vw,5rem);
  line-height:.96;
  letter-spacing:-.05em;
  color:var(--text);
  max-width:820px;
}

.hero p.lead{
  color:#4f4a43;
  font-size:clamp(1rem,1.4vw,1.14rem);
  max-width:680px;
  margin:0 0 22px;
}

.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0 0;
}

.hero-chip{
  font-weight:600;
  padding:11px 14px;
}

.booking-card,
.card,
.detail-card,
.review-card,
.social-card,
.faq-item,
.footer-pill,
.pill-panel{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow-soft);
}

.booking-card{
  align-self:end;
  border-radius:32px;
  padding:22px;
}

.booking-card h2{
  margin:0 0 6px;
  font-size:1.35rem;
  letter-spacing:-.02em;
}

.booking-card p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:.98rem;
}

.stat-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:18px 0 16px;
}

.stat{
  background:var(--bg-soft);
  border:1px solid var(--line);
  padding:14px 12px;
  border-radius:20px;
  text-align:center;
}

.stat strong{
  display:block;
  font-size:1.02rem;
  margin-bottom:4px;
}

.stat span{
  color:var(--muted);
  font-size:.88rem;
}

.booking-note{
  margin-top:14px;
  background:#fff;
  border:1px solid rgba(184,138,42,.22);
  color:#6b5630;
  border-radius:18px;
  padding:14px 16px;
  font-size:.92rem;
}

section{
  padding:34px 0;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:18px;
}

.section-head h2{
  margin:0;
  font-size:clamp(1.7rem,3vw,2.5rem);
  line-height:1.05;
  letter-spacing:-.04em;
}

.section-head p{
  margin:0;
  max-width:700px;
  color:var(--muted);
}

.pill-panel{
  border-radius:32px;
  padding:22px;
}

.intro-grid,
.details-grid,
.social-grid,
.review-grid,
.footer-grid,
.faq-grid{
  display:grid;
  gap:18px;
}

.intro-grid{
  grid-template-columns:1.05fr .95fr;
}

.card{
  border-radius:28px;
  padding:24px;
}

.card h3{
  margin:0 0 10px;
  font-size:1.18rem;
  letter-spacing:-.02em;
}

.muted{
  color:var(--muted);
}

.feature-list{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.feature-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 0;
  border-bottom:1px solid var(--line);
}

.feature-list li:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.icon-dot{
  width:34px;
  height:34px;
  border-radius:12px;
  background:#fff;
  border:1.5px solid var(--gold);
  color:var(--gold);
  display:grid;
  place-items:center;
  font-weight:700;
  flex:0 0 34px;
}

.details-grid{
  grid-template-columns:repeat(4,1fr);
}

.detail-card{
  border-radius:24px;
  padding:22px;
  min-height:100%;
}

.detail-label{
  color:var(--muted);
  font-size:.9rem;
  margin-bottom:8px;
  display:block;
}

.detail-value{
  font-size:1.12rem;
  font-weight:700;
  line-height:1.4;
}

.policy-panel{
  margin-top:18px;
}

.review-grid{
  grid-template-columns:repeat(3,1fr);
}

.review-card{
  border-radius:28px;
  padding:24px;
}

.stars{
  color:var(--gold);
  letter-spacing:2px;
  font-size:1rem;
  margin-bottom:10px;
}

.review-title{
  font-size:1.06rem;
  font-weight:700;
  margin-bottom:10px;
}

.review-card p{
  margin:0 0 12px;
}

.review-card .source{
  color:var(--muted);
  font-size:.95rem;
  font-weight:600;
}

.review-cta{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.social-grid{
  grid-template-columns:repeat(4,1fr);
}

.social-card{
  border-radius:26px;
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:100%;
  transition:.25s ease;
}

.social-card strong{
  font-size:1.02rem;
}

.social-card span{
  color:var(--muted);
  font-size:.95rem;
}

.social-card:hover,
.review-card:hover,
.card:hover,
.detail-card:hover{
  transform:translateY(-2px);
  transition:.25s ease;
}

.faq-grid{
  grid-template-columns:repeat(2,1fr);
}

.faq-item{
  border-radius:24px;
  padding:22px;
}

.faq-item h3{
  margin:0 0 8px;
  font-size:1.04rem;
}

.footer-wrap{
  padding:12px 0 42px;
}

.footer-pill{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:36px;
  padding:30px;
}

.footer-grid{
  grid-template-columns:1.2fr .8fr .8fr;
  align-items:start;
}

.footer-brand h3{
  margin:0 0 10px;
  font-size:1.5rem;
  letter-spacing:-.03em;
}

.footer-brand p{
  margin:0;
  color:var(--muted);
  max-width:520px;
}

.footer-col h4{
  margin:0 0 10px;
  font-size:1rem;
}

.footer-col a,
.footer-col div{
  display:block;
  color:var(--muted);
  margin-bottom:8px;
}

.footer-col a:hover{
  color:var(--gold);
}

.mini-note{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:.9rem;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

@media (max-width: 1120px){
  .hero-grid,
  .intro-grid,
  .details-grid,
  .review-grid,
  .social-grid,
  .faq-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero-shell,
  .hero-grid{
    min-height:auto;
  }

  .hero-copy{
    padding-top:10px;
  }
}

@media (max-width: 768px){
  .nav{
    flex-direction:column;
    align-items:stretch;
  }

  .nav-links{
    justify-content:center;
  }

  .hero-grid{
    padding:20px;
  }

  .hero h1{
    font-size:2.6rem;
  }

  .booking-card,
  .card,
  .detail-card,
  .review-card,
  .social-card,
  .faq-item,
  .footer-pill,
  .pill-panel{
    border-radius:24px;
  }

  .section-head{
    align-items:start;
  }

  .stat-row{
    grid-template-columns:1fr;
  }
}

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

.gallery-item{
  display:block;
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow-soft);
  transition:.25s ease;
}

.gallery-item:hover{
  transform:translateY(-2px);
}

.gallery-item img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(20,20,20,.82);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
  z-index:2000;
}

.lightbox.active{
  opacity:1;
  visibility:visible;
}

.lightbox img{
  max-width:min(1100px, 92vw);
  max-height:88vh;
  width:auto;
  height:auto;
  border-radius:24px;
  box-shadow:0 18px 50px rgba(0,0,0,.25);
  background:#fff;
}

.lightbox-close{
  position:absolute;
  top:20px;
  right:24px;
  width:48px;
  height:48px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
}

@media (max-width: 900px){
  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item{
    border-radius:22px;
  }

  .lightbox img{
    border-radius:18px;
  }
}