:root{
  --bg:#07080a;
  --bg2:#0b0d10;
  --text:#f7f7fb;
  --muted:#aeb6c2;

  --gold:#c9a86a;
  --gold-soft: rgba(201,168,106,.22);

  --border: rgba(255,255,255,.10);
  --border-soft: rgba(255,255,255,.07);
  --shadow: 0 18px 45px rgba(0,0,0,.55);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(201,168,106,.10), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(201,168,106,.06), transparent 45%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.6;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(1100px, 100% - 2.5rem); margin-inline:auto}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,8,10,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:.15rem;
}
.brand-name{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 1.15rem;
}
.brand-tag{
  color: var(--muted);
  font-size: .88rem;
}

.nav{
  display:flex;
  align-items:center;
  gap: 1.1rem;
  flex-wrap:wrap;
  justify-content:flex-end;
  font-size: .95rem;
}
.nav a{
  color: var(--muted);
  transition: color .2s ease, opacity .2s ease;
  position: relative;
}
.nav a:hover{color: var(--text)}
.nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:-.35rem;
  width:0; height:2px;
  background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.35));
  transition: width .2s ease;
}
.nav a:hover::after{width:100%}

.nav-cta{
  border: 1px solid rgba(201,168,106,.35);
  border-radius: 12px;
  padding: .55rem .95rem;
  background: rgba(11,13,16,.55);
  color: var(--text);
}
.nav-cta::after{display:none}
.nav-cta:hover{
  background: rgba(11,13,16,.9);
  border-color: rgba(201,168,106,.55);
}

/* Hero (minimal luxe) */
.hero{
  position:relative;
  min-height: clamp(540px, 80vh, 780px);
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom: 1px solid var(--border-soft);
}
.hero-media{
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.72)),
    url("./img/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(1.02);
  transform: scale(1.02);
}
.hero-tint{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 18% 18%, rgba(201,168,106,.16), transparent 55%),
    linear-gradient(to bottom, rgba(7,8,10,.18), rgba(7,8,10,.92));
}

.hero-inner{
  position: relative;
  max-width: 820px;
  padding: 4.7rem 0;
}

.kicker{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: rgba(201,168,106,.95);
  margin-bottom: .95rem;
}

.hero h1{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.05rem, 3.2vw + 1.1rem, 3.35rem);
  line-height: 1.12;
  margin-bottom: 1.15rem;
}

.hero-lead{
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 1.7rem;
  font-size: 1.02rem;
}

.hero-actions{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
}

.hero-meta{
  margin-top: 2rem;
  display:flex;
  flex-wrap:wrap;
  gap: .65rem 1rem;
  color: rgba(247,247,251,.92);
  opacity: .92;
  font-size: .95rem;
}

/* Buttons (sobres) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  padding: .78rem 1.25rem;
  border: 1px solid transparent;
  font-weight: 600;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn.primary{
  background: transparent;
  border-color: rgba(201,168,106,.55);
  color: var(--text);
}
.btn.primary:hover{
  transform: translateY(-1px);
  border-color: rgba(201,168,106,.85);
  box-shadow: 0 14px 30px rgba(0,0,0,.45);
}

.btn.ghost{
  background: rgba(11,13,16,.45);
  border-color: rgba(255,255,255,.14);
  color: var(--text);
}
.btn.ghost:hover{
  background: rgba(11,13,16,.85);
  border-color: rgba(255,255,255,.22);
}

/* Sections */
.section{padding: 4.2rem 0}
.section.alt{
  background: linear-gradient(180deg, rgba(11,13,16,.75), rgba(7,8,10,.75));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section.alt2{
  background: linear-gradient(180deg, rgba(201,168,106,.06), rgba(7,8,10,.85));
  border-top: 1px solid var(--border-soft);
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:.7rem;
  margin-bottom: 2.1rem;
}
.section-head h2{
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: .01em;
}
.section-head p{
  color: var(--muted);
  max-width: 74ch;
}

/* Concept split */
.split{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
}
.panel{
  background: rgba(11,13,16,.45);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: var(--shadow);
}
.panel h3{
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: .55rem;
}
.panel p{color: var(--muted); margin-bottom: 1rem}
.bullets{
  list-style: none;
  display:flex;
  flex-direction:column;
  gap:.5rem;
}
.bullets li{
  position: relative;
  padding-left: 1.1rem;
  color: rgba(247,247,251,.94);
  font-size: .95rem;
}
.bullets li::before{
  content:"";
  position:absolute;
  left:0; top:.55rem;
  width:.42rem; height:.42rem;
  border-radius: 999px;
  background: rgba(201,168,106,.95);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

/* Menu */
.menu-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.menu-card{
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: rgba(11,13,16,.45);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.5rem 1.25rem;
}
.menu-card h3{
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: .95rem;
}
.menu-list{list-style:none;display:flex;flex-direction:column;gap:.8rem}
.menu-list li{
  display:flex;
  justify-content:space-between;
  gap: 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  color: rgba(247,247,251,.94);
}
.menu-list li:last-child{border-bottom:none;padding-bottom:0}
.price{
  color: rgba(201,168,106,.95);
  font-weight: 650;
}
.note{
  margin-top: 1.35rem;
  color: var(--muted);
  border-left: 2px solid rgba(201,168,106,.45);
  padding-left: .9rem;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.shot{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--border-soft);
  background: rgba(11,13,16,.45);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.shot:hover{
  transform: translateY(-3px);
  border-color: rgba(201,168,106,.20);
  box-shadow: 0 22px 52px rgba(0,0,0,.68);
}
.shot img{width:100%; height:250px; object-fit:cover}
.shot figcaption{
  padding: .9rem 1rem;
  color: var(--muted);
  font-size: .92rem;
}

/* Reservation */
.reserve{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 1.6rem;
  padding: 1.8rem 1.8rem;
  border-radius: 18px;
  background: rgba(11,13,16,.45);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}
.reserve h2{
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: .35rem;
}
.reserve p{color: var(--muted)}
.reserve-meta{
  margin-top: .95rem;
  display:flex;
  flex-wrap:wrap;
  gap: .65rem 1rem;
  color: rgba(247,247,251,.92);
  opacity: .92;
}
.reserve-actions{
  display:flex;
  gap:.7rem;
  flex-wrap:wrap;
  align-items:flex-start;
}

.tiny{margin-top: 1rem; color: var(--muted); font-size: .85rem}

/* Footer */
.site-footer{
  border-top: 1px solid var(--border-soft);
  padding: 1.2rem 0;
  background: rgba(7,8,10,.85);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.muted{color: var(--muted)}

/* Responsive */
@media (max-width: 900px){
  .reserve{flex-direction:column; align-items:flex-start}
}
@media (max-width: 768px){
  .header-inner{flex-direction:column; align-items:flex-start}
  .nav{justify-content:flex-start}
  .hero-inner{padding: 3.7rem 0}
  .hero-actions{flex-direction:column; align-items:stretch; max-width: 360px}
  .hero-actions .btn{width:100%}
  .shot img{height:220px}
}
@media (max-width: 480px){
  .container{width: min(100% - 1.5rem, 480px)}
  .brand-tag{display:none}
  .hero h1{font-size: 1.75rem}
}
