:root{
  --bg: #0b0b0d;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.10);
  --shadow: 0 18px 60px rgba(0,0,0,0.55);
  --radius: 18px;

  --accent: #e7c39c;   /* warm latte */
  --accent2:#9dd6ff;   /* soft blue highlight */
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 700px at 15% 0%, rgba(231,195,156,0.12), transparent 55%),
              radial-gradient(900px 650px at 95% 20%, rgba(157,214,255,0.10), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  font-size: 13px;
  color: var(--muted);
}
.topbar__left{display:flex; gap:10px; align-items:center}
.dot{width:8px;height:8px;border-radius:50%;background:var(--accent); box-shadow:0 0 0 6px rgba(231,195,156,0.12)}
.topbar__right{display:flex; gap:10px; align-items:center}
.topbar__link{opacity:.9}
.topbar__link:hover{opacity:1}
.sep{opacity:.45}
.lang{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding:6px 10px;
  border-radius:999px;
  cursor:pointer;
}

.header{
  position:sticky;
  top:41px;
  z-index:40;
  background: rgba(10,10,12,0.60);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{width:40px;height:40px;border-radius:12px}
.brand--logoOnly { gap: 0; }

.brand__logo--wide{
  width: 220px;
  height: auto;
  border-radius: 0;
  /* helps it pop on dark background */
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.55));
}
.brand__name{font-family: Fraunces, serif; font-size:18px; line-height:1}
.brand__sub{font-size:12px; color:var(--muted2); margin-top:2px}

.nav{display:flex; align-items:center; gap:18px}
.nav__link{font-size:14px; color:var(--muted); padding:10px 10px; border-radius:10px}
.nav__link:hover{color:var(--text); background:rgba(255,255,255,0.05)}
.nav__link--cta{
  color: #101015;
  background: linear-gradient(135deg, var(--accent), #f2dbbd);
  font-weight:700;
}
.nav__link--cta:hover{filter: brightness(1.05)}

.burger{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius:12px;
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px;
  margin:6px 10px;
  background: rgba(255,255,255,0.85);
  border-radius:99px;
}

.hero{
  position:relative;
  padding: 56px 0 28px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  z-index:-2;
}
.hero__bg img{
  width:100%; height:100%;
  object-fit:cover;
  opacity:.30;
  filter: saturate(0.95) contrast(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 20% 10%, rgba(0,0,0,0.30), rgba(0,0,0,0.88)),
              linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.85));
  z-index:-1;
}

.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items:start;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.06);
  border:1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.hero__title{
  margin:14px 0 10px;
  font-family: Fraunces, serif;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.02em;
  line-height:1.05;
}
.hero__desc{
  margin:0;
  color: var(--muted);
  font-size: 16px;
  line-height:1.7;
  max-width: 58ch;
}

.hero__actions{
  display:flex;
  gap:12px;
  margin-top: 18px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  border: none;
  color:#101015;
  background: linear-gradient(135deg, var(--accent), #f2dbbd);
}
.btn--secondary{
  border: 1px solid rgba(231,195,156,0.35);
  background: rgba(231,195,156,0.12);
}
.btn--ghost{
  background: rgba(255,255,255,0.05);
}

.hero__stats{
  display:flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap:wrap;
}
.stat{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
}
.stat__num{font-weight:800}
.stat__label{font-size:12px; color:var(--muted2); margin-top:2px}

.hero__card{
  position:sticky;
  top: 112px;
}
.heroCard{
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.heroCard__title{
  font-weight:800;
  letter-spacing:-0.01em;
  margin-bottom: 12px;
}
.heroCard__list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.item{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.item__name{font-weight:800}
.item__desc{font-size:12px; color:var(--muted2); margin-top:2px}
.item__price{font-weight:800; color: var(--accent)}
.heroCard__btn{width:100%; margin-top: 12px}
.heroCard__fine{font-size:12px; color:var(--muted2); margin-top:10px}

.section{padding: 64px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section__head{margin-bottom: 22px}
.menuDownload{
  margin: 8px 0 20px;
  display:flex;
  justify-content:flex-start;
}
.menuHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.menuHead__right{
  display:flex;
}

.section__title{
  margin:0;
  font-family: Fraunces, serif;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.section__subtitle{
  margin:8px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(255,255,255,0.05);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.card__icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(231,195,156,0.12);
  border: 1px solid rgba(231,195,156,0.30);
  margin-bottom: 12px;
  font-size: 20px;
}
.card__title{margin:0 0 6px; font-weight:900}
.card__text{margin:0; color:var(--muted); line-height:1.7}

.menuBox{
  background: rgba(255,255,255,0.05);
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
}
.menuBox__top{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items:center;
  flex-wrap: wrap;
}
.menuBox__badge{
  display:inline-flex;
  padding: 6px 10px;
  border-radius:999px;
  border: 1px solid rgba(231,195,156,0.30);
  background: rgba(231,195,156,0.10);
  font-weight:800;
  font-size:12px;
}
.menuBox__hint{margin-top:6px; font-size:12px; color:var(--muted2)}
.menuBox__actions{display:flex; gap:10px; flex-wrap:wrap}

.quickMenu{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.quickMenu__head{
  margin-bottom: 12px;
}

.quickMenu__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
}

.quickMenu__sub{
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 80ch;
  font-size: 13px;
}

.quickMenu__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.qCard{
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.qCard__title{
  font-weight: 900;
  margin: 0 0 10px;
}

.qHeader{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  margin: 10px 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.55);
  font-weight: 800;
}

.qList{
  list-style:none;
  padding: 0;
  margin: 0;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.qList li{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text);
  font-size: 14px;
}

.qList li span:first-child{
  color: rgba(255,255,255,0.86);
  font-weight: 700;
}

.qList li span:last-child{
  color: var(--accent);
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 980px){
  .quickMenu__grid{grid-template-columns: 1fr;}
}


.gallery{
  display:none;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery__item{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.gallery__item img{
  width:100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.95;
  transition: transform .25s ease;
}
.gallery__item:hover img{transform: scale(1.03)}

.loc{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}
.loc__left{
  background: rgba(255,255,255,0.05);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.infoRow{padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07)}
.infoRow:last-child{border-bottom:none}
.infoRow__k{font-size:12px; color:var(--muted2); font-weight:800; text-transform:uppercase; letter-spacing:.08em}
.infoRow__v{margin-top:6px; color:var(--text)}
.loc__cta{margin-top:14px}
.map{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  height: 360px;
}
.map iframe{width:100%; height:100%; border:0}

.cta{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  align-items:center;
  padding: 20px;
  border-radius: var(--radius);
  border:1px solid rgba(231,195,156,0.20);
  background: linear-gradient(135deg, rgba(231,195,156,0.12), rgba(157,214,255,0.08));
}
.cta__title{
  margin:0;
  font-family: Fraunces, serif;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.cta__text{margin:8px 0 0; color:var(--muted); line-height:1.7}
.cta__right{display:flex; gap:10px; flex-wrap:wrap}

.footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0;
  color: var(--muted);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  align-items:center;
  flex-wrap: wrap;
}
.footer__name{font-weight:900; color: var(--text)}
.footer__small{font-size:12px; color:var(--muted2); margin-top:4px}
.footer__links{display:flex; gap:14px}
.footer__links a:hover{color:var(--text)}
.footer__copy{font-size:12px; color:var(--muted2)}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr}
  .hero__card{position:relative; top:auto}
  .grid3{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .gallery__item img{height: 280px}
  .loc{grid-template-columns: 1fr}
  .map{height: 320px}
  .nav{
    position: absolute;
    right: 20px;
    top: 68px;
    width: calc(100% - 40px);
    max-width: 520px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding: 10px;
    border-radius: 16px;
    background: rgba(10,10,12,0.88);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
  .burger{display:inline-block}
}
