:root{
  --text:#101010;
  --muted:#5d5d5d;
  --border:#eadfce;
  --brand:#b11e2f;

  --radius:18px;
  --max:1180px;

  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --font-title: "Playfair Display", ui-serif, Georgia, serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font-body);
  color:var(--text);
  background:#fff;
  line-height:1.55;
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), calc(100% - 28px)); margin-inline:auto; }

/* TOP HERO */
.top-hero{
  background:
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.12) 50%, rgba(0,0,0,.10) 100%),
    url("hero.png");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display:flex;
  flex-direction:column;
}

/* NAV: trasparente, fissa in alto, non cambia con lo scroll */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 18px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 0;
}
.brand-logo{
  width: 108px;
  height: 108px;
  object-fit: contain;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  flex: none;
}
.brand-text{ min-width:0; }
.brand-name{
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.05;
  color:#fff;
  text-shadow:
    0 0 16px rgba(255,255,255,.55),
    0 18px 40px rgba(0,0,0,.55);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.brand-tagline{
  margin-top: 4px;
  font-weight: 850;
  font-size: 15px;
  color: rgba(255,255,255,.92);
  text-shadow:
    0 0 14px rgba(255,255,255,.40),
    0 18px 40px rgba(0,0,0,.55);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

/* NAV links */
.nav{
  display:flex;
  align-items:center;
  gap: 12px;
}
.nav-links{
  display:flex;
  gap: 6px;
  align-items:center;
}
.nav-links a{
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  font-size: 14px;
  font-weight: 800;
  transition: .15s ease;
}
.nav-links a:hover{
  background: rgba(255,255,255,.12);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
  font-size: 14px;
  font-weight: 900;
  transition: .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn.primary{
  background: rgba(177,30,47,.96);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 16px 30px rgba(177,30,47,.24);
}
.btn.light{
  background: rgba(255,255,255,.92);
  color: #121212;
  border-color: rgba(0,0,0,.10);
  box-shadow: 0 14px 26px rgba(0,0,0,.10);
}
.btn.outline{
  background:#fff;
  color:#121212;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 14px 26px rgba(0,0,0,.06);
}
.btn.dark{
  background: rgba(255,255,255,.12);
  color:#fff;
  border: 1px solid rgba(255,255,255,.14);
}

/* Burger */
.burger{
  display:none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
}
.burger span{
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  display:block;
}
.burger span::before,
.burger span::after{
  content:"";
  position:absolute;
  left:0;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.burger span::before{ top:-7px; }
.burger span::after{ top:7px; }

/* Drawer */
.drawer{
  display:none;
  padding: 12px 0 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.40);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  margin-bottom: 12px;
}
body.nav-open .drawer{ display:block; }
.drawer .stack{ display:grid; gap: 10px; padding: 0 10px; }
.drawer .stack a{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-weight: 900;
}
.drawer .actions{
  display:grid;
  gap: 10px;
  margin-top: 12px;
  padding: 0 10px 10px;
}

/* HERO: allineata a destra e testo più largo */
.hero-wrap{
  flex: 1;
  display:flex;
  align-items:flex-end;
  padding: 38px 0 64px;
}
.hero{
  width: min(980px, 100%);
}
.hero-right{
  margin-left: auto;
  text-align: right;
}
.hero-title{
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  font-weight: 900;
  color:#fff;
  text-shadow:
    0 0 18px rgba(255,255,255,.50),
    0 18px 44px rgba(0,0,0,.55);
}
.hero-title span{ display:block; }

/* +4px e contorno nero 1px (richiesta) */
.hero-subtitle{
  margin: 14px 0 0;
  margin-left: auto;
  max-width: 88ch;
  font-size: 21px; /* +4 */
  color: rgba(255,255,255,.92);
  font-weight: 650;

  -webkit-text-stroke: 1px rgba(0,0,0,.85);

  text-shadow:
    -1px -1px 0 rgba(0,0,0,.55),
     1px -1px 0 rgba(0,0,0,.55),
    -1px  1px 0 rgba(0,0,0,.55),
     1px  1px 0 rgba(0,0,0,.55),
     0 0 18px rgba(255,255,255,.24),
     0 18px 44px rgba(0,0,0,.55);
}
.hero-actions{
  display:flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

/* +4px e contorno nero 1px (richiesta) */
.hero-note{
  margin-top: 14px;
  margin-left: auto;
  max-width: 92ch;
  font-size: 17.5px; /* +4 */
  color: rgba(255,255,255,.84);
  font-weight: 650;

  -webkit-text-stroke: 1px rgba(0,0,0,.85);

  text-shadow:
    -1px -1px 0 rgba(0,0,0,.55),
     1px -1px 0 rgba(0,0,0,.55),
    -1px  1px 0 rgba(0,0,0,.55),
     1px  1px 0 rgba(0,0,0,.55),
     0 0 12px rgba(255,255,255,.18),
     0 18px 44px rgba(0,0,0,.55);
}

/* Sections */
.section{
  padding: 60px 0;
  background:#fff;
}
.section-head h2{
  margin:0;
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
}
.section-head p{
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 90ch;
  font-weight: 650;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.panel{
  border: 1px solid rgba(234,223,206,.95);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
  padding: 18px;
}
.panel h3{ margin:0 0 8px; font-size: 18px; font-weight: 900; }
.panel p{ margin:0; color: var(--muted); font-weight: 650; }
.inline-actions{ margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; }
.mini-info{ margin-top: 12px; color: var(--muted); font-weight: 650; font-size: 13.5px; }
.mini-info a{ text-decoration: underline; }

/* Accordion */
.accordion{ margin-top: 18px; }
.acc{ margin-bottom: 12px; }
.acc-summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 18px;
  background:#fff;
  border: 1px solid rgba(234,223,206,.95);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
  font-weight: 900;
  font-size: 16px;
}
.acc-summary::-webkit-details-marker{ display:none; }
.acc-hint{ color: var(--muted); font-weight: 750; font-size: 12.5px; }
.acc-body{ padding: 12px 4px 6px; }

.menu-grid{ display:grid; grid-template-columns: 1fr; gap: 12px; }
.menu-item{
  display:flex;
  gap: 14px;
  align-items: stretch;
  border: 1px solid rgba(234,223,206,.95);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  padding: 16px;
}
.menu-left{ flex:1; min-width:0; }
.menu-row{ display:flex; align-items:baseline; gap: 10px; }
.menu-row h4{ margin:0; font-size: 16px; font-weight: 900; }
.menu-row strong{ margin-left:auto; font-weight: 900; }
.dots{ flex:1; border-bottom: 1px dashed rgba(20,20,20,.20); transform: translateY(-2px); }
.menu-item p{ margin: 8px 0 0; color: var(--muted); font-weight: 650; font-size: 13.5px; }
.ingredients{
  margin-top: 10px;
  color: rgba(17,17,17,.72);
  font-weight: 650;
  font-size: 12.8px;
  background: rgba(234,223,206,.35);
  border: 1px solid rgba(234,223,206,.8);
  padding: 10px 12px;
  border-radius: 14px;
}
.dish-img{
  width: 150px;
  height: 118px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(234,223,206,.95);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
  flex:none;
}
.fineprint{ margin-top: 10px; color: var(--muted); font-weight: 650; font-size: 13px; }

/* Hours table */
.hours-table{
  width:100%;
  border-collapse: collapse;
}
.hours-table td{
  padding: 12px 10px;
  border-bottom: 1px solid rgba(234,223,206,.9);
  font-weight: 650;
  color: #2a2a2a;
}
.hours-table td:first-child{
  width: 34%;
  color:#111;
  font-weight: 900;
}

/* Map */
.map{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(234,223,206,.95);
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
  background:#fff;
  margin-top: 16px;
}
.map iframe{ width:100%; height: 360px; border:0; display:block; }

/* Footer */
.site-footer{
  background: #0f0f10;
  color: rgba(255,255,255,.86);
  padding: 46px 0 26px;
}
.footer-main{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.footer-brand{ display:flex; gap: 12px; align-items:center; }
.footer-logo{
  width: 94px;
  height: 94px;
  object-fit: contain;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 30px rgba(0,0,0,.22);
}
.footer-name{
  font-family: var(--font-title);
  font-weight: 900;
  color:#fff;
  font-size: 19px;
}
.footer-tag{
  color: rgba(255,255,255,.72);
  font-weight: 650;
  font-size: 13px;
  margin-top: 3px;
}
.footer-title{ font-weight: 900; color:#fff; margin-bottom: 10px; }
.footer-text{ color: rgba(255,255,255,.74); font-weight: 650; line-height: 1.6; }
.footer-text a{ text-decoration: underline; }
.footer-cta{ margin-top: 12px; }
.footer-bottom{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.66);
  font-weight: 650;
  font-size: 13px;
}
.footer-legal{ display:flex; gap: 10px; align-items:center; }
.footer-legal a{ color: rgba(255,255,255,.72); text-decoration: underline; }

/* Responsive */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .burger{ display:flex; }
  .two-col{ grid-template-columns: 1fr; }
  .footer-main{ grid-template-columns: 1fr; }
  .menu-item{ flex-direction: column; }
  .dish-img{ width: 100%; height: 180px; }
  .nav-cta{ display:none; }
}
@media (max-width: 720px){
  .bar{ padding: 14px 0; }
  .brand-logo{ width: 92px; height: 92px; }
  .brand-name{ font-size: 22px; }
  .brand-tagline{ font-size: 14px; }
  .hero-title{ font-size: clamp(34px, 8.2vw, 54px); }
  .hero-subtitle{ max-width: 44ch; }
}
