:root{--bg:#fff;--text:#111;--muted:#666;--card:#f5f5f5;--accent:#0a6b4a;--cta:#f5c400;--ctaText:#1a1a1a;--radius:18px;}
*{box-sizing:border-box}
img{max-width:100%;height:auto}
html{scroll-behavior:smooth}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;line-height:1.5;color:var(--text);background:var(--bg)}
header{position:sticky;top:0;background:#111;border-bottom:1px solid rgba(255,255,255,.08);z-index:10}
.header-inner{max-width:1100px;margin:0 auto;padding:14px 18px;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.logo{font-weight:800;font-size:1.15rem;letter-spacing:.2px;text-decoration:none;color:#fff}
.logo:visited{color:#fff}

/* Navigation */
.nav-links{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.nav-links a{text-decoration:none;color:rgba(255,255,255,.85);padding:8px 10px;border-radius:999px;transition:all .15s ease}
.nav-links a:hover{background:rgba(255,255,255,.10);color:#fff}
.nav-links a[aria-current="page"]{background:rgba(255,255,255,.14);color:#fff}

/* Hamburger */
.nav-toggle{display:none;appearance:none;border:0;background:transparent;padding:10px;margin:-6px;border-radius:12px;cursor:pointer}
.nav-toggle span{display:block;width:24px;height:2px;background:#fff;border-radius:2px;margin:5px 0;transition:transform .2s ease,opacity .2s ease}
body.nav-open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
body.nav-open .nav-toggle span:nth-child(2){opacity:0}
body.nav-open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
main{max-width:1100px;margin:0 auto;padding:18px}
section{padding:22px 0}
.hero{display:grid;grid-template-columns:1.1fr .9fr;gap:22px;align-items:center}
.hero img{width:100%;height:auto;border-radius:var(--radius);box-shadow:0 10px 30px rgba(0,0,0,.08)}
.badge{display:inline-block;background:rgba(10,107,74,.10);color:var(--accent);padding:6px 10px;border-radius:999px;font-weight:600;font-size:.85rem;margin-bottom:10px}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.card{background:var(--card);border-radius:var(--radius);overflow:hidden;box-shadow:0 10px 25px rgba(0,0,0,.06)}
.card img{width:100%;height:160px;object-fit:cover}
.card h3{margin:12px 12px 6px}
.card p{margin:0 12px 14px;color:var(--muted);font-size:.95rem}
.video-list{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.video-list video{width:100%;border-radius:var(--radius);box-shadow:0 10px 25px rgba(0,0,0,.08);background:#000}
/* Interior photo should match the width of the main content on large screens */
.interior-photo{width:100%;max-width:100%;display:block;margin:0 auto;height:auto;border-radius:var(--radius);box-shadow:0 10px 30px rgba(0,0,0,.08)}

.menu-cta{padding-top:0}
/* Big yellow full-width CTA button (style similar to reference) */
.menu-cta{padding:0 0 6px}
.cta-group{display:flex;flex-direction:column;gap:14px}
.menu-cta .menu-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:var(--cta);
  color:var(--ctaText);
  text-decoration:none;
  padding:16px 18px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.2px;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
  font-size:1.05rem;
}
.menu-cta .menu-btn:hover{filter:brightness(1.03)}
.menu-cta .menu-btn--secondary{background:var(--accent);color:#fff}
.menu-cta .menu-btn--secondary .menu-btn__left,
.menu-cta .menu-btn--secondary .menu-btn__right{background:rgba(255,255,255,.14)}
.menu-btn__left{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:999px;
  background:rgba(0,0,0,.14);
  flex:0 0 46px;
}
.menu-btn__text{flex:1 1 auto;text-align:left}
.menu-btn__right{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:999px;background:rgba(0,0,0,.10);flex:0 0 34px}
.menu-btn__left svg,.menu-btn__right svg{width:22px;height:22px;fill:currentColor}

/* Menu page images */
.menu-images{display:flex;flex-direction:column;gap:14px}
.menu-image{width:100%;max-width:100%;margin:0 auto;display:block;border-radius:var(--radius);box-shadow:0 10px 30px rgba(0,0,0,.08)}
.contact{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.contact-info{background:var(--card);border-radius:var(--radius);padding:14px 16px}
.inline-link{color:var(--accent);font-weight:700;text-decoration:none}
.inline-link:hover{text-decoration:underline}
.map-container{border-radius:var(--radius);overflow:hidden;box-shadow:0 10px 25px rgba(0,0,0,.06)}
.map-container iframe{width:100%;height:320px;border:0}
footer{border-top:1px solid #eee;color:var(--muted);padding:18px;text-align:center}

.menu-wrap{max-width:1100px;margin:0 auto;padding:18px}
/* Legacy PDF frame styles kept for compatibility (not used now) */
.menu-index{display:none}
.menu-frame{display:none}
.menu-frame embed, .menu-frame iframe{width:100%;height:100%;border:0}

@media (max-width:980px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .hero{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .video-list{grid-template-columns:1fr}
}
@media (max-width:760px){
  .nav-toggle{display:block}
  .nav-links{display:none;position:absolute;left:0;right:0;top:100%;padding:10px 18px 16px;background:#111;border-bottom:1px solid rgba(255,255,255,.08)}
  .nav-links a{display:block;padding:12px 10px;border-radius:14px}
  body.nav-open .nav-links{display:block}
}
@media (max-width:520px){
  .grid{grid-template-columns:1fr}
  .menu-wrap{padding:14px 12px}
}
