@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap');

:root {
  --it-green: #008c45;
  --it-red: #cd212a;
  --it-white: #f8f8f3;
  --ink: #1a1f1d;
  --ink-soft: #3e4a45;
  --panel: #ffffff;
  --panel-soft: #f7faf7;
  --line: rgba(0, 140, 69, 0.2);
  --shadow: 0 14px 32px rgba(12, 32, 21, 0.1);
  --radius: 20px;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background:
    radial-gradient(880px 460px at 8% -12%, rgba(0, 140, 69, 0.14), transparent 62%),
    radial-gradient(760px 480px at 94% 6%, rgba(205, 33, 42, 0.12), transparent 64%),
    linear-gradient(180deg, #fafcf9, #f4f7f3 52%, #f8f6f2);
}

a {
  color: var(--it-green);
  text-underline-offset: 3px;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: radial-gradient(#000 0.35px, transparent 0.35px);
  background-size: 3px 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 4vw;
  border-bottom: 1px solid rgba(0, 140, 69, 0.2);
  background:
    linear-gradient(90deg,
      rgba(0, 140, 69, 0.93) 0%,
      rgba(248, 248, 243, 0.95) 51%,
      rgba(205, 33, 42, 0.92) 100%);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: #0f1b16;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.brand strong {
  display: block;
  letter-spacing: 0.02em;
  font-weight: 800;
}

.brand small {
  color: #30413a;
  font-size: 0.75rem;
  font-weight: 600;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 44%, #d6249f 62%, #285aeb 90%);
  box-shadow: 0 0 10px rgba(214, 36, 159, 0.4);
  margin-left: auto;
  margin-right: 0.4rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  margin-right: 0.45rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 36, 27, 0.2);
  background: rgba(255, 255, 255, 0.42);
}

.lang-option {
  border: 0;
  border-radius: 999px;
  padding: 0.25rem 0.52rem;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #13261d;
  background: transparent;
  cursor: pointer;
}

.lang-option.is-active {
  background: rgba(255, 255, 255, 0.88);
}

.instagram-link svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.instagram-link svg .dot { fill: #fff; stroke: none; }

.menu-toggle {
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  color: #13211b;
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #0e1c16;
  font-weight: 700;
  padding: 0.34rem 0.58rem;
  border-radius: 10px;
}

.main-nav a.active,
.main-nav a:hover {
  background: rgba(255, 255, 255, 0.66);
}

.main-nav a.reserve-btn {
  color: #fff !important;
  background: var(--it-red) !important;
  border: 1px solid #ef4b53 !important;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  box-shadow: 0 0 14px rgba(205, 33, 42, 0.35);
}

.main-nav a.reserve-btn:hover,
.main-nav a.reserve-btn:focus,
.main-nav a.reserve-btn:active,
.main-nav a.reserve-btn:visited {
  color: #fff !important;
  background: var(--it-red) !important;
  border-color: #ff7078 !important;
}

main {
  width: min(1180px, 92vw);
  margin: 1.4rem auto 3.2rem;
}

.panel {
  border: 1px solid rgba(0, 140, 69, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(249, 252, 248, 0.97));
  box-shadow: var(--shadow);
}

.hero,
.grid-3,
.grid-2,
.menu-grid,
.contact-grid,
.booking-form {
  display: grid;
  gap: 0.75rem;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.contact-grid .contact-box {
  height: 100%;
}

.hero.hero-single { grid-template-columns: 1fr; }

.hero-main,
.hero-side,
.section,
.contact-grid,
.menu-shell,
.legal {
  padding: 1.2rem;
}

.legal,
.legal * {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.eyebrow {
  margin: 0;
  color: var(--it-green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  margin: 0.64rem 0 0.9rem;
  line-height: 1.12;
  color: #152019;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2.06rem); }

.welcome-title {
  margin: 0.15rem 0;
  text-align: center;
  font-size: clamp(1.24rem, 2.2vw, 1.8rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
}

p { color: var(--ink-soft); }

[data-i18n='home.locationText'] {
  text-align: justify;
  text-justify: inter-word;
}

.about-copy p {
  text-align: justify;
  text-justify: inter-word;
}

.about-image {
  height: clamp(230px, 34vw, 420px);
  margin-bottom: 0.95rem;
}

.hero-brand,
.gallery-image {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-brand {
  max-width: 560px;
  margin: 0.2rem auto 0.9rem;
}

.gallery-card {
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfcfa);
  box-shadow: 0 10px 24px rgba(17, 34, 24, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-image { height: 320px; }

.home-gallery {
  gap: 1rem;
  margin-top: 0.75rem;
}

.home-gallery .gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(10, 28, 19, 0.14);
}

.home-gallery .gallery-image {
  width: 100%;
  height: clamp(280px, 30vw, 380px);
  object-fit: cover;
  background: transparent;
  padding: 0;
}

.location-image {
  margin: 0.35rem 0 0.75rem;
  height: clamp(230px, 34vw, 380px);
}

.gallery-card figcaption {
  padding: 0.72rem 0.82rem 0.82rem;
  color: #1d3126;
  font-size: 1rem;
  font-weight: 800;
}

.actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--it-green), #20ab66);
  box-shadow: 0 0 16px rgba(0, 140, 69, 0.28);
}

.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  filter: grayscale(0.2);
}

.btn-primary:disabled,
.btn-primary[disabled] {
  color: #f3f4f6;
  background: #8da198;
  border-color: #8da198;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 240;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner-text strong {
  display: block;
  color: #102019;
}

.cookie-banner-text p {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: #42544b;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  padding: 0.45rem 0.68rem;
  background: #fff;
  color: #192922;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-primary {
  border-color: rgba(0, 140, 69, 0.5);
  background: linear-gradient(120deg, var(--it-green), #18a461);
  color: #fff;
}

.cookie-btn-ghost {
  background: #fff;
}

.cookie-floating-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 220;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 0.46rem 0.82rem;
  background: rgba(255, 255, 255, 0.95);
  color: #16251f;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 16, 12, 0.44);
  padding: 1rem;
}

.cookie-modal-backdrop.is-open {
  display: flex;
}

.cookie-modal {
  width: min(540px, 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.cookie-modal h3 {
  margin: 0 0 0.4rem;
}

.cookie-modal p {
  margin: 0 0 0.8rem;
  color: #42564c;
  font-size: 0.94rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  margin-bottom: 0.55rem;
  color: #203229;
}

.cookie-option input {
  width: 18px;
  height: 18px;
}

.cookie-modal-actions {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.btn-ghost {
  color: #1d3025;
  border-color: rgba(0, 140, 69, 0.36);
  background: rgba(255, 255, 255, 0.82);
}

.pdf-download-btn {
  color: #fff;
  border-color: #1a9b57;
  background: #1a9b57;
}

.pdf-download-btn:hover {
  color: #fff;
  border-color: #25b566;
  background: #25b566;
}

.stat,
.menu-item,
.contact-box {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 0.8rem;
  background: var(--panel-soft);
}

.stat strong { display: block; margin-bottom: 0.25rem; }

.section,
.menu-shell,
.contact-grid,
.legal {
  margin-top: 1rem;
}

.hours {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.45rem 0;
}

.map-embed {
  margin-top: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.menu-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.menu-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--site-header-height, 88px) + 0.55rem);
  z-index: 55;
  margin: -0.15rem -0.15rem 0.9rem;
  padding: 0.6rem 0.55rem 0.1rem;
  border-radius: 14px;
  background: rgba(248, 251, 247, 0.96);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 20px rgba(16, 34, 24, 0.09);
}

@supports not ((position: sticky) or (position: -webkit-sticky)) {
  .menu-sticky {
    position: static;
    top: auto;
  }
}

@media (min-width: 761px) {
  .menu-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.search-input,
.booking-form input,
.booking-form select,
.booking-form textarea,
.category-chip {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  color: #1b2b22;
  background: #fff;
  font: inherit;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.category-chip {
  cursor: pointer;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: #fff;
}

.category-chip.active {
  border-color: rgba(0, 140, 69, 0.75);
  box-shadow: 0 0 0 1px rgba(0, 140, 69, 0.2) inset;
}

.menu-group { margin-top: 1rem; }
.menu-group .eyebrow { margin-bottom: 0.7rem; }
.drink-section { margin-top: 1rem; }
.drink-section-title {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f7f4a;
}

.menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.menu-item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  font-weight: 800;
  color: #18251d;
}

.menu-item p {
  margin: 0.5rem 0 0;
  font-size: 0.93rem;
}

.menu-item small {
  display: block;
  margin-top: 0.45rem;
  color: #557062;
}

.allergen-wrap {
  max-width: 720px;
  display: grid;
  gap: 0.45rem;
}

.allergen-title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  color: #1f7f4a;
  font-weight: 800;
}

.allergen-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.75rem;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0.2rem;
}

.allergen-code,
.allergen-name {
  font-weight: 700;
  color: #1f2f27;
}

.allergen-gap { height: 1rem; }

.booking-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.booking-form label {
  display: grid;
  gap: 0.32rem;
  color: #31493f;
  font-size: 0.91rem;
}

.booking-form .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.booking-form .consent-label input[type='checkbox'] {
  margin-top: 0.18rem;
  flex: 0 0 auto;
}

.recaptcha-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 78px;
  position: relative;
}

.grecaptcha-badge {
  left: 14px !important;
  right: auto !important;
}

.consent-blocked {
  min-height: 140px;
}

.consent-placeholder {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 1rem;
  background: rgba(250, 251, 249, 0.97);
}

.consent-placeholder p {
  margin: 0;
  color: #354b40;
  font-size: 0.92rem;
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-form .full { grid-column: 1 / -1; }

.form-feedback {
  min-height: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

.form-feedback.is-success {
  color: #1d7f49;
}

.form-feedback.is-error {
  color: #b3261e;
}

.legal p { margin: 0.5rem 0; }

.legal ul {
  margin: 0.45rem 0 0.65rem 1.1rem;
  padding: 0;
}

.legal li {
  color: #3b5348;
  margin: 0.2rem 0;
}

.legal a { color: #117d47; }

.site-footer {
  padding: 1.4rem;
  text-align: center;
  color: #476256;
  border-top: 1px solid rgba(0, 140, 69, 0.22);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}

.footer-legal a {
  text-decoration: none;
  color: #1f372c;
  font-size: 0.84rem;
  border: 1px solid rgba(0, 140, 69, 0.35);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  background: rgba(255, 255, 255, 0.86);
}

.footer-legal a:hover {
  border-color: rgba(205, 33, 42, 0.52);
  color: #111;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .grid-3,
  .grid-2,
  .menu-grid,
  .contact-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .site-header {
    gap: 0.7rem;
    padding: 0.68rem 1.2rem;
    flex-wrap: wrap;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .instagram-link {
    margin-left: 0.25rem;
    margin-right: 0.15rem;
  }

  .main-nav {
    width: 100%;
    order: 10;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .main-nav a {
    padding: 0.3rem 0.52rem;
    font-size: 0.93rem;
  }

  main {
    width: min(100%, 94vw);
    margin: 1rem auto 2.5rem;
  }

  .hero-main,
  .hero-side,
  .section,
  .contact-grid,
  .menu-shell,
  .legal {
    padding: 1rem;
  }

  .menu-sticky {
    top: calc(var(--site-header-height, 88px) + 0.35rem);
    margin: -0.05rem -0.05rem 0.75rem;
    padding: 0.52rem 0.48rem 0.06rem;
  }

  .menu-top {
    gap: 0.55rem;
    margin-bottom: 0.62rem;
  }

  .category-row {
    gap: 0.42rem;
    margin-bottom: 0.55rem;
  }

  .category-chip {
    padding: 0.38rem 0.66rem;
    font-size: 0.9rem;
  }

  .menu-grid,
  .contact-grid,
  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form .full,
  .menu-group,
  .allergen-wrap {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 0.45rem;
    padding: 0.62rem 0.7rem;
  }

  .brand {
    gap: 0.5rem;
    min-width: 0;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1.03rem;
    line-height: 1.08;
  }

  .brand small {
    font-size: 0.66rem;
    line-height: 1.1;
  }

  .lang-switch {
    padding: 0.18rem;
  }

  .lang-option {
    padding: 0.22rem 0.48rem;
    font-size: 0.72rem;
  }

  .instagram-link {
    width: 31px;
    height: 31px;
  }

  .menu-toggle {
    padding: 0.4rem 0.72rem;
    font-size: 0.96rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    left: 0.6rem;
    right: 0.6rem;
    bottom: calc(0.6rem + env(safe-area-inset-bottom));
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }

  .cookie-floating-btn {
    right: 0.6rem;
    bottom: calc(0.6rem + env(safe-area-inset-bottom));
  }

  .menu-toggle { display: inline-block; }

  .instagram-link {
    margin-left: 0;
    margin-right: 0;
  }

  .lang-switch {
    margin-left: 0;
    margin-right: 0;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0.7rem;
    right: 0.7rem;
    z-index: 150;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(249, 250, 245, 0.98);
    border: 1px solid rgba(0, 140, 69, 0.24);
    border-radius: 14px;
    padding: 0.7rem;
    box-shadow: 0 18px 38px rgba(7, 18, 12, 0.15);
  }

  .main-nav.is-open { display: flex; }

  main {
    width: min(100%, 96vw);
    margin: 0.9rem auto 2.2rem;
  }

  .search-input,
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 16px;
  }

  .hero-main,
  .hero-side,
  .section,
  .contact-grid,
  .menu-shell,
  .legal {
    padding: 0.95rem;
  }

  .menu-top { grid-template-columns: 1fr; }

  .menu-sticky {
    position: static;
    margin: 0 0 0.75rem;
    padding: 0.5rem 0.45rem 0.08rem;
  }

  .category-row {
    gap: 0.4rem;
    margin-bottom: 0.65rem;
  }

  .category-chip {
    padding: 0.36rem 0.66rem;
    font-size: 0.95rem;
  }
}
