:root{
  --bg:#ffffff;
  --ink:#111114;
  --muted:#6b6f76;
  --line:#eceef1;
  --card:#f8f9fb;
  --brand:#111114;
  --accent:#c7a26a;
  --radius:18px;
  --shadow:0 18px 45px rgba(0,0,0,.10);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  overflow-x:hidden;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:var(--ink)
}

a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}

.wrap{
  max-width:1180px;
  margin:auto;
  padding:0 16px
}

/* ───────────────── TOPBAR ───────────────── */

.topbar{
  background:#0f0f12;
  color:#fff;
  font-size:13px
}

.topbar .wrap{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 16px;
  flex-wrap:wrap
}

.topbar a{
  color:#fff;
  text-decoration:underline;
  opacity:.95
}

/* ───────────────── HEADER ───────────────── */

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

/* ✅ NEW: Single rounded capsule container for the header row */
.navShell{
  margin:12px 0;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 18px 45px rgba(0,0,0,.10);
}

/* ───────── HEADER BRAND IMAGE ───────── */

.brandImage{
  display:flex;
  align-items:center;
}

.brandImage img{
  height:42px;              /* desktop */
  width:auto;
  border-radius:10px;
  object-fit:cover;
}

@media(max-width:900px){
  .brandImage img{
    height:36px;            /* mobile */
  }
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  /* ✅ changed: capsule provides padding now */
  padding:0;

  flex-wrap:nowrap;
}

/* (Keeping your .brand block even if not used everywhere) */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  min-width:0;

  padding:6px 10px;
  border-radius:12px;
  background:rgba(255,255,255,.75);
  box-shadow:0 4px 14px rgba(0,0,0,.06);
}

.brand img{height:34px}

.brand span{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:180px;
  display:inline-block;
}

.menu{
  display:flex;
  gap:18px;
  font-weight:700;
  color:var(--muted)
}

.menu a:hover{color:var(--ink)}

.ctaRow{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:nowrap;
}

/* ✅ Updated buttons to match the premium pill render */
.btn{
  border:1px solid rgba(0,0,0,.08);
  padding:11px 18px;
  border-radius:999px;
  font-weight:900;
  background:rgba(255,255,255,.92);
  cursor:pointer;
  transition:.15s;
  color:var(--ink);
  white-space:nowrap;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.btnPrimary{
  background:linear-gradient(180deg,#1b1d22,#0f1013);
  color:#fff;
  border-color:rgba(0,0,0,.35);
  box-shadow:0 14px 26px rgba(0,0,0,.18);
}

.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}

/* ───────────────── HAMBURGER REFINEMENT ───────────────── */

.hamburger{
  width:42px;
  height:42px;
  border-radius:14px;              /* softer than a circle */
  border:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.85);
  font-size:18px;
  color:#111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 14px rgba(0,0,0,.06);
  transition:.15s ease;
}

/* Hover / tap feedback */
.hamburger:hover{
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

/* Active (tap) */
.hamburger:active{
  transform:scale(.96);
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.mobileMenu{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 14px
}

.mobileMenu a{
  display:block;
  padding:12px 10px;
  font-weight:700;
  color:var(--muted)
}

.mobileMenu.open{display:block}

.mobileIcons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding:10px 10px 0
}

.iconBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid var(--line);
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  font-weight:900;
  transition:.15s
}

.icon{width:18px;height:18px}

/* ───────────────── HERO ───────────────── */

.hero{padding:28px 0}

.heroGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px
}

.heroMain{
  border-radius:18px;
  min-height:420px;
  position:relative;
  overflow:hidden;
  background:#000
}

.heroMain::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(110deg,rgba(0,0,0,.65),rgba(0,0,0,.2)),
    url('/assets/hero1.jpg') center/cover no-repeat
}

.heroContent{
  position:relative;
  color:#fff;
  padding:32px;
  max-width:650px
}

.h1{
  font-size:42px;
  font-weight:900;
  line-height:1.05
}

.lead{
  color:rgba(255,255,255,.9);
  margin:14px 0
}

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

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px
}

/* ───────────────── ABOUT TEASER ───────────────── */

.aboutTeaser{padding:40px 0}

.aboutBox{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:20px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  background:var(--card);
  box-shadow:var(--shadow)
}

.aboutImg{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #fff
}

.aboutBox h3{
  margin:0 0 6px;
  font-size:20px
}

.aboutBox p{
  margin:0 0 10px;
  color:var(--muted);
  line-height:1.6
}

.aboutLink{font-weight:900}

@media(max-width:700px){
  .aboutBox{
    grid-template-columns:1fr;
    text-align:center
  }
  .aboutImg{
    margin:0 auto 8px;
  }
}

/* ───────────────── INSTAGRAM ───────────────── */

.igSection{
  padding:32px 0;
  background:#faf7f5
}

.igHeader{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap
}

.igTitle{
  font-size:26px;
  font-weight:900
}

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

.igEmbedShell{
  border-radius:18px;
  overflow:hidden;
  margin-top:16px;
  background:#fff;
  border:1px solid var(--line)
}

/* ───────────────── BOOKING ───────────────── */

.bookingWrap{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:#fff
}

/* ───────────────── FOOTER ───────────────── */

footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
  font-size:14px
}

.footerLinks{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center
}

.footerLinks a{
  font-weight:800;
  color:var(--ink)
}

.footerLinks span{color:var(--muted)}

.footerMeta{
  margin-top:8px;
  color:var(--muted);
  font-size:13px
}

.c-quickBook{
  margin-top:18px;
  padding:16px;
  border-radius:18px;
  background:#f6f2ee;
  border:1px solid #eadfd6;
  text-align:center;
}

.c-quickBook h3{
  margin:0 0 4px;
  font-size:18px;
}

.c-quickBook p{
  margin:0 0 12px;
  font-size:14px;
  color:var(--muted);
}

.c-bookBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  background:#000;
  color:#fff;
  text-decoration:none;
}

.c-bookBtn:hover{
  opacity:.92;
}

/* ───────────────── MOBILE HEADER CLEANUP (FIX 1) ───────────────── */

@media (max-width: 900px) {

  /* Hide "Access Booking" pill on mobile */
  .ctaRow .btn:not(.btnPrimary) {
    display: none;
  }

  /* Keep Book button prominent */
  .ctaRow .btnPrimary {
    display: inline-flex;
  }

  /* Slightly tighten header height on mobile */
  .nav {
    padding: 10px 0;
  }
}

/* ───────────────── MOBILE ───────────────── */

@media(max-width:900px){
  .menu{display:none}
  .hamburger{display:inline-flex}
  .heroGrid{grid-template-columns:1fr}

  /* ✅ keep both pills visible on mobile */
  .ctaRow{gap:8px}
  .ctaRow .btn{padding:10px 12px}

  /* ✅ REMOVED: .ctaRow .btnPrimary{display:none} */
}