:root {
  --cream: #f7f2e9;
  --cream-deep: #efe7d8;
  --gold: #b3924f;
  --gold-soft: #cdb37e;
  --ink: #3d3628;
  --ink-muted: #7a7060;
  --green: #1d4b3b;
  --green-dark: #163a2e;
  --wa: #1faa59;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(61, 54, 40, 0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- language toggle ---------- */
.lang-it .en { display: none !important; }
body:not(.lang-it) .it { display: none !important; }

.lang-switch {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.lang-switch button {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-muted);
  transition: all 0.2s ease;
}
.lang-switch button.active {
  background: var(--green);
  color: var(--white);
}

/* ---------- hero (page sets its own background-image inline) ---------- */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px 110px;
  background-position: center 38%;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero.hero-short { min-height: 46vh; padding: 84px 24px 104px; }
.hero-logo {
  width: min(66vw, 340px);
  height: auto;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.45));
}
.hero.hero-short .hero-logo { width: min(56vw, 270px); }
.hero .tagline {
  margin-top: 26px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 4vw, 1.5rem);
  color: var(--white);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

/* ---------- layout ---------- */
main { max-width: 640px; margin: 0 auto; padding: 0 20px 40px; }

.intro {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 34px 30px 30px;
  margin-top: -72px;
  position: relative;
  text-align: center;
}
.intro h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 6vw, 2.2rem);
  color: var(--ink);
}
.intro .rule {
  width: 54px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 16px;
  border-radius: 2px;
}
.intro p {
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 1.02rem;
}
.intro strong { color: var(--ink); font-weight: 500; }

/* ---------- cards / steps ---------- */
.steps { margin-top: 34px; display: flex; flex-direction: column; gap: 18px; }

.step {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 26px;
}
.step-head { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.step-num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.42rem;
  line-height: 1.25;
  color: var(--ink);
}
.step p { color: var(--ink-muted); font-weight: 300; margin-bottom: 6px; }
.step p strong { color: var(--ink); font-weight: 500; }

.coords {
  display: inline-block;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 8px;
  padding: 4px 10px;
  margin: 6px 0 4px;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.btn {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 13px 20px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn svg { flex: none; }

.btn-solid { background: var(--green); color: var(--white); box-shadow: 0 6px 16px rgba(29, 75, 59, 0.3); }
.btn-solid:hover { background: var(--green-dark); }
.btn-wa { background: var(--wa); color: var(--white); box-shadow: 0 6px 16px rgba(31, 170, 89, 0.3); }
.btn-wa:hover { filter: brightness(0.94); }
.btn-outline {
  background: var(--white);
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: #f2f6f4; }

.map-embed {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--cream-deep);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 240px; border: 0; }

.parking-fig { margin: 18px 0 0; }
.parking-fig img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 14px;
  border: 1px solid var(--cream-deep);
  display: block;
}
.parking-fig figcaption {
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 300;
  text-align: center;
  margin-top: 8px;
}

.note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--ink-muted);
  font-weight: 300;
}
.note svg { flex: none; margin-top: 3px; color: var(--gold); }

/* ---------- link card (cross-page navigation) ---------- */
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  background: linear-gradient(120deg, #fdfaf3, var(--cream));
  border: 1.5px solid var(--gold-soft);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 24px 26px;
  transition: transform 0.15s ease;
}
.link-card:active { transform: scale(0.98); }
.link-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.42rem;
  line-height: 1.25;
  color: var(--ink);
}
.link-card p { color: var(--ink-muted); font-weight: 300; font-size: 0.95rem; }
.link-card .arrow {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ---------- price list ---------- */
.price-list { margin: 14px 0 4px; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 2px;
}
.price-row + .price-row { border-top: 1px dashed var(--cream-deep); }
.price-row .label { font-weight: 400; color: var(--ink); }
.price-row .dots { flex: 1; border-bottom: 1px dotted var(--gold-soft); transform: translateY(-4px); }
.price-row .amount {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--green);
  white-space: nowrap;
}

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--cream-deep);
  display: block;
}
.gallery img.wide { grid-column: span 2; height: 200px; }
@media (min-width: 560px) {
  .gallery img { height: 190px; }
  .gallery img.wide { height: 260px; }
}

/* ---------- menu ---------- */
.menu-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 20px;
  margin: 0 -20px;
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-deep);
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: none;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--green);
  border: 1px solid var(--gold-soft);
  background: var(--white);
  border-radius: 999px;
  padding: 7px 15px;
  white-space: nowrap;
}
.menu-nav a:active { background: var(--cream-deep); }

.menu-section { scroll-margin-top: 74px; }
.menu-section .sec-head {
  text-align: center;
  margin: 40px 0 6px;
}
.menu-section .sec-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.menu-section .sec-head .rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}
.menu-section .sec-note {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.menu-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 10px 26px;
  margin-top: 14px;
}
.menu-item { padding: 16px 0; }
.menu-item + .menu-item { border-top: 1px dashed var(--cream-deep); }
.mi-head { display: flex; align-items: baseline; gap: 10px; }
.mi-name { font-weight: 500; color: var(--ink); }
.mi-name .al {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 400;
  margin-left: 4px;
  white-space: nowrap;
}
.mi-head .dots { flex: 1; border-bottom: 1px dotted var(--gold-soft); transform: translateY(-4px); min-width: 18px; }
.mi-price {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--green);
  white-space: nowrap;
}
.mi-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink-muted);
  margin-top: 3px;
  line-height: 1.5;
}
.mi-desc em { font-style: italic; }

.wine-region {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 18px 0 2px;
}
.wine-region:not(:first-child) { border-top: 1px solid var(--cream-deep); margin-top: 8px; }

.allergen-box {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  margin-top: 18px;
  padding: 4px 18px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 300;
}
.allergen-box summary {
  cursor: pointer;
  padding: 10px 0;
  font-weight: 500;
  color: var(--ink);
  list-style-position: inside;
}
.allergen-box .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 4px 14px;
  padding: 4px 0 14px;
}

/* ---------- photo break ---------- */
.photo-break {
  margin: 40px -20px 0;
  height: 300px;
  background-position: center 62%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 680px) {
  .photo-break { margin: 40px 0 0; border-radius: 20px; box-shadow: var(--shadow); }
}

/* ---------- footer ---------- */
footer {
  text-align: center;
  padding: 44px 24px 56px;
  background: var(--green);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 46px;
}
.footer-logo { width: 190px; height: auto; opacity: 0.95; }
footer .addr { margin-top: 18px; font-weight: 300; font-size: 0.95rem; }
footer a { color: var(--white); text-decoration: none; font-weight: 500; }
footer a:hover { text-decoration: underline; }
footer .links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 0.95rem;
}
footer .tiny { margin-top: 26px; font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); font-weight: 300; }
