/* Página moderna: Gastronomía (Sanlúcar) */
:root{
  --bg0: #07121e;
  --bg1: #0b2036;
  --sand: #f2b33d;
  --teal: #2aa8a8;
  --ink: #0b0f14;
  --paper: #fbfaf7;
  --muted: rgba(255,255,255,.78);
  --shadow: 0 18px 55px rgba(0,0,0,.38);
  --r: 18px;
}

*,
*::before,
*::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--paper);
  background:
    radial-gradient(1200px 700px at 15% 5%, rgba(42,168,168,.25), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(242,179,61,.22), transparent 55%),
    linear-gradient(180deg, var(--bg0), #050b12 70%);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5,11,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  max-width: 1150px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 55%),
    linear-gradient(135deg, var(--sand), rgba(242,179,61,.2));
  box-shadow: 0 12px 32px rgba(242,179,61,.22);
}
.brand__text{ display: grid; line-height: 1.05; }
.brand__title{
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 700;
  letter-spacing: .01em;
}
.brand__sub{
  font-size: 12px;
  opacity: .85;
}

.nav{
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav a{
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 650;
  letter-spacing: .01em;
  opacity: .92;
}
.nav a:hover{
  opacity: 1;
  text-decoration: none;
  background: rgba(255,255,255,.06);
}

.menu{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  padding: 10px;
}
.menu span{
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,.88);
  border-radius: 999px;
}
.menu span + span{ margin-top: 6px; }

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero__inner{
  max-width: 1150px;
  margin: 0 auto;
  padding: 64px 18px 44px;
  position: relative;
  z-index: 1;
}
.hero__bg{
  position: absolute;
  inset: -220px -220px -120px -220px;
  background:
    radial-gradient(1200px 680px at 25% 35%, rgba(242,179,61,.22), transparent 60%),
    radial-gradient(950px 680px at 70% 35%, rgba(42,168,168,.18), transparent 60%),
    conic-gradient(from 210deg at 50% 50%, rgba(255,255,255,.08), rgba(255,255,255,0) 30%, rgba(255,255,255,.06), rgba(255,255,255,0) 70%, rgba(255,255,255,.08));
  filter: blur(20px);
  opacity: .95;
}

.kicker{
  margin: 0 0 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}
.hero h1{
  margin: 0 0 12px;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.02;
}
.hero__lead{
  margin: 0 0 18px;
  max-width: 68ch;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 1.35vw, 19px);
}
.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.note{
  margin: 16px 0 0;
  font-size: 13px;
  opacity: .78;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 750;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  text-decoration: none;
  transform: translateY(-1px);
}
.btn--primary{
  color: #102236;
  background: linear-gradient(180deg, #f6c55f, var(--sand));
  box-shadow: 0 18px 40px rgba(242,179,61,.22);
}
.btn--primary:hover{ box-shadow: 0 22px 55px rgba(242,179,61,.30); }
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.btn--ghost:hover{ background: rgba(255,255,255,.09); }

/* Sections */
.section{
  max-width: 1150px;
  margin: 0 auto;
  padding: 44px 18px;
}
.section__head{
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.section__head h2{
  margin: 0;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(22px, 2.4vw, 34px);
}
.section__head p{
  margin: 0;
  color: rgba(255,255,255,.80);
  max-width: 78ch;
}

.grid{
  display: grid;
  gap: 14px;
}

/* Cards: platos */
.cards{
  grid-template-columns: repeat(12, 1fr);
}
.card{
  grid-column: span 6;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding: 16px 16px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.card:hover{
  border-color: rgba(242,179,61,.35);
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}
.card__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.84);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  margin-bottom: 10px;
}
.card h3{
  margin: 0 0 8px;
  font-size: 18px;
}
.card p{
  margin: 0 0 10px;
  color: rgba(255,255,255,.82);
}
.card__meta{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

/* Filters */
.filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 14px;
}
.chip{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.90);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}
.chip:hover{ background: rgba(255,255,255,.08); }
.chip.is-active{
  background: rgba(242,179,61,.16);
  border-color: rgba(242,179,61,.55);
}

/* Places */
.places{
  grid-template-columns: repeat(12, 1fr);
}
.place{
  grid-column: span 4;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding: 16px;
}
.place h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.place p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.80);
  font-size: 14px;
}
.place__links{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(42,168,168,.14);
  border: 1px solid rgba(42,168,168,.35);
  font-weight: 750;
  font-size: 14px;
}
.link:hover{
  text-decoration: none;
  background: rgba(42,168,168,.20);
}
.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  opacity: .92;
}

.callout{
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--r);
  border: 1px solid rgba(242,179,61,.22);
  background: linear-gradient(180deg, rgba(242,179,61,.12), rgba(255,255,255,.04));
}
.callout h3{
  margin: 0 0 6px;
  font-family: "Fraunces", ui-serif, Georgia, serif;
}
.callout p{ margin: 0; color: rgba(255,255,255,.82); }

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 28px 18px 42px;
}
.footer__inner{
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,.80);
}
.footer__small{ font-size: 12px; opacity: .75; }

/* Responsive */
@media (max-width: 980px){
  .place{ grid-column: span 6; }
}
@media (max-width: 760px){
  .menu{ display: inline-flex; flex-direction: column; justify-content: center; gap: 0; }
  .nav{
    position: fixed;
    inset: 72px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(5,11,18,.88);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
  }
  .nav.is-open{ display: flex; }
  .nav a{ padding: 12px 12px; }

  .card{ grid-column: span 12; }
  .place{ grid-column: span 12; }
}

