/* ===============================
   GUSTO – Master CSS (shadowless)
   =============================== */

/* ===== Tokens ===== */
:root{
  --gusto:#400000;
  --gold:#ecd4c2;
  --surface:#ffffff;
  --line: rgba(0,0,0,.12);

  --radius-xl: 7px;
  --radius-pill: 999px;

  --wrap: 1120px;
  --gutter: 24px;
}

/* ===== Reset / Base ===== */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#111;
  background:#fff;
}

/* ===== Container ===== */
.wrap{
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 16px;
  border-radius:var(--radius-pill);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  border:1px solid transparent;
  line-height:1;
}
.btn--primary{ background:var(--gusto); color:var(--gold); }
.btn--outline{ background:transparent; color:#111; border-color:rgba(0,0,0,.45); }

/* Ghost/Light: Border auf hellen Flächen sichtbar */
.btn--ghost{ background:#fff; color:#111; border-color:var(--line); }
.btn--light{ background:#fff; color:#111; border-color:var(--line); }

.btn:focus-visible{
  outline: 2px solid rgba(64,0,0,.55);
  outline-offset: 3px;
}

/* ===============================
   NAV
   =============================== */
.topnav{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.topnav__inner{
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  height: 86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand img{
  height:70px;
  width:auto;
  display:block;
}

.topnav__links{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin:0;
  padding:0;
  flex:1 1 auto;

  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  font-size:12px;
}
.topnav__links a{
  color:#111;
  text-decoration:none;
  padding:10px 2px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.topnav__links a:hover{ color:var(--gusto); }

.topnav__actions{
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}

.lang{
  border:0;
  background:transparent;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 10px;
  border-radius:12px;
  cursor:pointer;
  font-weight:800;
}
.lang:hover{ background:rgba(0,0,0,.04); }

/* Dropdown (Desktop) */
.has-dd{ position:relative; }
.dd__trigger{
  border:0;
  background:transparent;
  cursor:pointer;
  font:inherit;
  color:#111;
  padding:10px 2px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  font-size:12px;
}
.dd__trigger:hover{ color:var(--gusto); }

.dd{
  position:absolute;
  top:44px;
  left:-8px;
  min-width:190px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px;
  box-shadow:none;
  display:none;
}
.has-dd:hover .dd,
.has-dd:focus-within .dd{
  display:grid;
  gap:6px;
}
.dd a{
  text-decoration:none;
  color:#111;
  font-weight:800;
  font-size:13px;
  padding:10px 10px;
  border-radius:10px;
}
.dd a:hover{ background:rgba(0,0,0,.04); }

/* ===== Mobile Hamburger Button ===== */
.navtoggle{
  display:none;              /* nur mobile */
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  width:44px;
  height:44px;
  cursor:pointer;
  font-weight:900;
  line-height:1;
}
.navtoggle__icon{ font-size:18px; }

/* ===== Mobile Offcanvas ===== */
.mnav{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:2000;
}
.mnav__panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(360px, 88vw);
  background:#fff;
  border-left:1px solid var(--line);
  padding:18px;
  display:grid;
  grid-template-rows:auto 1fr auto;
  gap:14px;
}
.mnav__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.mnav__title{
  font-weight:900;
  letter-spacing:.02em;
}
.mnav__close{
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  width:44px;
  height:44px;
  cursor:pointer;
  font-size:22px;
  line-height:1;
}
.mnav__links{
  display:grid;
  gap:6px;
  padding-top:6px;
}
.mnav__links a{
  text-decoration:none;
  color:#111;
  font-weight:900;
  padding:12px 12px;
  border-radius:12px;
}
.mnav__links a:hover{ background:rgba(0,0,0,.04); }
.mnav__actions{
  display:grid;
  gap:10px;
}
.lang--mobile{
  justify-content:flex-start;
  border:1px solid var(--line);
  background:#fff;
}

/* Mobile: Desktop-Navigation ausblenden, Hamburger einblenden */
@media (max-width: 980px){
  .topnav__links,
  .topnav__actions{ display:none; }
  .navtoggle{ display:inline-grid; place-items:center; }
  .topnav__inner{ justify-content:space-between; }
}

/* ===============================
   HERO
   =============================== */
.hero{
  padding-top:32px;
  background:#fff;
}
.hero .wrap{ padding:0; }

.hero__media{
  position:relative;
  width:100%;
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:none;
}
.hero__media img{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
}
.hero__overlay{
  position:absolute;
  inset:0 auto 0 0;
  width:33.333%;
  background:rgba(0,0,0,.45);
  display:grid;
  align-content:center;
  gap:18px;
  padding:48px;
  color:#fff;
}
.hero__overlay h1{
  margin:0;
  font-size:clamp(28px, 3vw, 44px);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-0.02em;
}
@media (max-width: 820px){
  .hero__overlay{
    width:100%;
    padding:28px;
    background:linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.35));
  }
}

/* ===============================
   PREMIOS
   =============================== */
.premios{
  padding:46px 0 40px;
  background:#fff;
}
.premios h2{
  text-align:center;
  font-size:34px;
  margin:0 0 28px;
  font-weight:900;
  letter-spacing:-0.02em;
}
.premios__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:34px;
  align-items:start;
}
.premio{
  display:grid;
  grid-template-columns:64px 1fr;
  column-gap:14px;
  align-items:start;
}
.premio__icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background:rgba(0,0,0,.06);
  display:grid;
  place-items:center;
  color:var(--gusto);
  grid-column:1;
  grid-row:1 / span 2;
  align-self:center;
}
.premio h3{ margin:0; font-size:14px; font-weight:900; grid-column:2; }
.premio p{
  margin:6px 0 0;
  color:#555;
  font-size:13px;
  line-height:1.35;
  max-width:34ch;
  grid-column:2;
}
.premios__cta{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:22px;
}
@media (max-width: 980px){
  .premios__grid{ grid-template-columns:1fr; gap:18px; }
  .premio p{ max-width:none; }
}

/* ===============================
   TILES (2x2)
   =============================== */
.tiles{
  padding:10px 0 70px;
  background:#fff;
}
.tiles__wrap{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:20px;
}
.tile{
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:#fff;
  box-shadow:none;
  border:1px solid var(--line);
  display:grid;
  grid-template-rows:240px 1fr;
}
.tile__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.tile__body{
  padding:22px 22px 24px;
  display:grid;
  gap:10px;
  align-content:start;
}
.tile__body h3{
  margin:0;
  font-size:18px;
  font-weight:900;
  line-height:1.1;
}
.tile__body p{
  margin:0;
  font-size:13px;
  line-height:1.35;
  max-width:56ch;
}
.tile--dark .tile__body{ background:var(--gusto); color:var(--gold); }
.tile--dark .tile__body p{ color:rgba(236,212,194,.92); }
.tile--light .tile__body{ background:#f6f2ef; color:#111; }

@media (max-width: 980px){
  .tiles__wrap{ grid-template-columns:1fr; }
  .tile{ grid-template-rows:220px 1fr; }
}
@media (max-width: 520px){
  .tile{ grid-template-rows:200px 1fr; }
  .tile__body{ padding:18px 18px 20px; }
}

/* ===============================
   TOP-NEWS
   =============================== */
.g-section{ padding:26px 0 42px; }
.g-h2{
  margin:0 0 16px;
  text-align:center;
  font-size:20px;
  font-weight:900;
}

.news{
  position:relative;
  display:grid;
  grid-template-columns:44px 1fr 44px;
  align-items:center;
  gap:14px;
}
.news__viewport{ overflow:hidden; }
.news__track{
  display:flex;
  gap:18px;
  transition:transform .35s ease;
  will-change:transform;
}
.news__card{
  flex:0 0 calc((100% - 36px)/3);
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:none;
}
.news__img{ position:relative; height:150px; background:#eee; }
.news__img img{ width:100%; height:100%; object-fit:cover; display:block; }
.news__badge{
  position:absolute; right:14px; top:14px;
  width:34px; height:34px;
  border-radius:50%;
  display:grid; place-items:center;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.10);
  font-weight:900;
}
.news__body{ padding:16px 18px 18px; display:grid; gap:10px; }
.news__title{ margin:0; font-size:16px; font-weight:900; line-height:1.15; }
.news__link{
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  color:var(--gusto);
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding-top:10px;
  border-top:1px solid rgba(0,0,0,.10);
}
.news__link:hover{ text-decoration:underline; }

.news__nav{
  width:44px; height:44px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow:none;
}
.news__nav:disabled{ opacity:.35; cursor:default; }

.news__dots{
  grid-column: 1 / -1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  margin-top:14px;
}
.news__dot{
  width:8px;
  height:8px;
  border-radius:50%;
  border:0;
  background: rgba(64,0,0,.25);
  padding:0;
  cursor:pointer;
}
.news__dot.is-active{ background: var(--gusto); }

@media (max-width: 980px){
  .news{ grid-template-columns:40px 1fr 40px; }
  .news__card{ flex-basis:calc((100% - 18px)/2); }
}
@media (max-width: 640px){
  .news{ grid-template-columns:36px 1fr 36px; gap:10px; }
  .news__card{ flex-basis:100%; }
  .news__img{ height:165px; }
}

/* ===============================
   STORE + RESERVIERUNG
   =============================== */
.store{
  display:grid;
  grid-template-columns:1fr 1.6fr;
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:none;
  background:#fff;
}

.store__panel{
  background:var(--gusto);
  color:var(--gold);
  padding:34px 34px 30px;
  display:grid;
  gap:14px;
  align-content:start;
  min-height:310px;
}
.store__title{ margin:0; font-size:26px; font-weight:900; letter-spacing:-0.01em; }
.store__text{
  margin:0;
  font-size:13px;
  line-height:1.45;
  color:rgba(236,212,194,.95);
  max-width:52ch;
}
.store__meta{
  margin:10px 0 0;
  font-size:12px;
  color:rgba(236,212,194,.85);
  min-height:16px;
}

.store__map{
  background:#fff;
  min-height:310px;
}

.reserve{
  height:100%;
  padding:28px 28px 22px;
  display:grid;
  gap:16px;
}

.reserve__title{
  margin:0;
  font-size:18px;
  font-weight:900;
  letter-spacing:-0.01em;
}
.reserve__sub{
  margin:6px 0 0;
  font-size:13px;
  color:rgba(0,0,0,.68);
  line-height:1.35;
}

.reserve__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px 14px;
  padding-top:6px;
}

.f{ display:grid; gap:6px; }
.f--full{ grid-column:1 / -1; }

.f__label{
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  color:rgba(0,0,0,.72);
}
.f__input{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:11px 12px;
  font:inherit;
  font-size:13px;
  background:#fff;
  outline:none;
}
.f__input:focus-visible{
  border-color: rgba(64,0,0,.55);
  outline: 2px solid rgba(236,212,194,.55);
  outline-offset: 2px;
}
.f__textarea{
  resize: vertical;
  min-height: 88px;
}

.reserve__actions{
  display:flex;
  align-items:center;
  gap:12px;
  padding-top:4px;
  flex-wrap:wrap;
}
.reserve__ok{
  font-size:13px;
  font-weight:800;
  color:rgba(64,0,0,.85);
}
.reserve__fineprint{
  margin:0;
  font-size:11.5px;
  color:rgba(0,0,0,.55);
  line-height:1.35;
}

/* ✅ Store stackt auf Mobile */
@media (max-width: 980px){
  .store{ grid-template-columns:1fr; }
  .store__panel{ min-height:auto; padding:26px 18px 22px; }
  .store__map{ min-height:auto; }
  .reserve{ padding:22px 18px 18px; }
  .reserve__grid{ grid-template-columns:1fr; }
}

/* ===============================
   FOOTER (GUSTO CD)
   =============================== */
.g-footer{
  background:var(--gusto);
  color:var(--gold);
  padding:60px 0 40px;
}
.g-footer__wrap{ display:grid; gap:34px; }
.g-footer__top{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:40px;
  align-items:start;
}
.g-footer__brand img{ height:70px; width:auto; display:block; }

.g-footer__mid{
  display:grid;
  grid-template-columns:1fr auto;
  gap:22px;
  align-items:center;
}
.g-footer__legal{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  align-items:center;
}
.g-footer__legal a{
  color:rgba(236,212,194,.88);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
}
.g-footer__legal a:hover{ color:var(--gold); text-decoration:underline; }

.g-footer__social{
  display:flex;
  gap:12px;
  align-items:center;
}
.g-social{
  width:34px; height:34px;
  border-radius:50%;
  display:grid; place-items:center;
  border:1px solid rgba(236,212,194,.40);
  background:rgba(236,212,194,.10);
  color:var(--gold);
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  box-shadow:none;
}
.g-social:hover{ background:rgba(236,212,194,.18); }

.g-footer__app{ display:grid; }
.g-appcard{
  width:min(520px,100%);
  border:1px solid rgba(236,212,194,.22);
  border-radius:10px;
  background:rgba(0,0,0,.14);
  padding:18px 18px 16px;
  box-shadow:none;
}
.g-appcard h4{ margin:0 0 8px; font-size:14px; font-weight:900; }
.g-appcard p{
  margin:0 0 12px;
  font-size:12.5px;
  line-height:1.4;
  color:rgba(236,212,194,.86);
}
.g-appcard__badges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.g-badge{ display:inline-flex; border-radius:8px; overflow:hidden; }
.g-badge img{ height:40px; width:auto; display:block; }

.g-footer__bottom{ padding-top:6px; }
.g-footer__bottom p{
  margin:0;
  font-size:13px;
  color:rgba(236,212,194,.78);
}

@media (max-width: 980px){
  .g-footer__top{ grid-template-columns:1fr; }
  .g-footer__mid{ grid-template-columns:1fr; }
}
