:root{
  --cafe:#4A2C1D;
  --crema:#F3E6D2;
  --dorado:#B08D57;
  --azul:#2C6E91;
  --negro:#2B2B2B;
  --bg:#fbf7ef;
  --card:#ffffff;
  --line:#eadfce;
  --shadow: 0 14px 40px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--negro);
  background:var(--bg);
  line-height:1.6;
}

h1,h2,h3{font-family:"Playfair Display", Georgia, serif; color:var(--cafe); margin:0 0 10px}
h1{font-size:44px; line-height:1.05}
h2{font-size:30px}
h3{font-size:20px}

.container{max-width:1100px;margin:0 auto;padding:0 18px}
.muted{color:#6a625a}
.label{font-weight:700;color:var(--cafe);font-size:12px;text-transform:uppercase;letter-spacing:.08em}

.topbar{
  position:sticky; top:0; z-index:10;
  background:rgba(251,247,239,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{display:flex; flex-direction:column; text-decoration:none}
.brand__name{font-family:"Playfair Display"; font-size:24px; color:var(--cafe)}
.brand__tag{font-size:12px; color:var(--azul); font-weight:700; letter-spacing:.06em}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--negro); text-decoration:none; font-weight:600}
.nav a:hover{color:var(--azul)}
.nav__toggle{display:none; border:1px solid var(--line); background:var(--card); padding:10px 12px; border-radius:10px}

.hero{padding:64px 0 34px}
.hero__inner{display:grid; grid-template-columns: 1.2fr .8fr; gap:28px; align-items:center}
.hero__copy p{max-width:640px; margin:0 0 18px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 14px}
.hero__chips{display:flex; gap:8px; flex-wrap:wrap}

.chip{
  border:1px solid var(--line);
  background:var(--card);
  padding:8px 10px;
  border-radius:999px;
  font-weight:600;
  font-size:13px;
}

.hero__card{
  background:linear-gradient(180deg, var(--crema), #fff);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px;
}
.hero__cardInner{
  border:1px dashed #d9c9b3;
  border-radius:16px;
  padding:26px;
  text-align:center;
}
.hero__cardTitle{font-family:"Playfair Display"; font-size:34px; color:var(--cafe)}
.hero__cardSub{font-weight:800; color:var(--azul); letter-spacing:.08em; text-transform:uppercase; font-size:12px}
.hero__cardLine{height:1px; background:#e7d7c2; margin:16px 0}
.hero__cardSmall{font-weight:700; color:#6a625a}

.section{padding:54px 0}
.section--alt{background:rgba(243,230,210,.55); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:16px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:16px}

.card, .menuCard{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:18px;
}

.menuList{list-style:none; padding:0; margin:10px 0 0}
.menuList li{display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid #f0e6d7}
.menuList li:last-child{border-bottom:none}
.note{margin-top:12px; padding:10px 12px; border-radius:12px; background:#fff7ea; border:1px solid #f0dec4; font-weight:600}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  border-radius:12px;
  padding:12px 14px;
  font-weight:800;
  border:1px solid transparent;
}
.btn--primary{background:var(--cafe); color:#fff}
.btn--primary:hover{filter:brightness(1.05)}
.btn--ghost{background:transparent; color:var(--cafe); border-color:var(--line)}
.btn--ghost:hover{background:#fff}

.mapWrap{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  min-height:320px;
}
.mapWrap iframe{width:100%; height:100%; min-height:320px; border:0}

.miniGrid{display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:14px}
.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.links{display:flex; flex-direction:column; gap:10px; margin-top:10px}
.links a{color:var(--azul); font-weight:700; text-decoration:none}
.links a:hover{text-decoration:underline}

.footer{padding:22px 0; border-top:1px solid var(--line)}
.footer__inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

@media (max-width: 900px){
  h1{font-size:38px}
  .hero__inner{grid-template-columns:1fr; }
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .nav{display:none}
  .nav__toggle{display:inline-flex}
  .nav.nav--open{display:flex; flex-direction:column; position:absolute; right:18px; top:58px; background:var(--card); border:1px solid var(--line); padding:12px; border-radius:14px; box-shadow:var(--shadow)}
}
