/* ============================================================
   Verano — Mediterranean bistro. Shared styles for the demo.
   Palette: warm cream / terracotta / olive / charcoal.
   No gradients-as-decoration, no glass cards, no emoji icons.
   ============================================================ */

:root {
  --cream:      #f7f1e7;
  --cream-2:    #efe6d6;
  --paper:      #fffdf9;
  --ink:        #26201b;
  --ink-soft:   #4a4038;
  --muted:      #857a6e;
  --line:       #e2d6c3;
  --terracotta: #b5563a;
  --terracotta-d:#98422a;
  --olive:      #6a7040;
  --gold:       #c0912f;

  --shadow:     0 18px 40px -24px rgba(38, 32, 27, .45);
  --shadow-sm:  0 8px 20px -14px rgba(38, 32, 27, .4);
  --radius:     4px;
  --wrap:       1160px;

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--terracotta-d); text-decoration: none; }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .4em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 .8rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--terracotta);
  display: inline-block;
}

.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tint { background: var(--cream-2); }
.section--paper { background: var(--paper); }
.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--terracotta); color: #fff; }
.btn--primary:hover { background: var(--terracotta-d); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--wide { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 241, 231, .92);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 74px;
}
.brand { display: flex; align-items: baseline; gap: .5rem; }
.brand__mark { display: flex; align-items: center; gap: .55rem; }
.brand__mark svg { width: 30px; height: 30px; color: var(--terracotta); }
.brand__name {
  font-family: var(--serif);
  font-size: 1.7rem; font-weight: 700; color: var(--ink);
  letter-spacing: .5px; line-height: 1;
}
.brand__tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  padding: 6px 0; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--terracotta); transition: width .25s ease;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  display: inline-flex; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden;
  background: var(--paper);
}
.lang-toggle button {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--sans); font-weight: 700; font-size: .8rem;
  padding: 7px 13px; color: var(--muted); letter-spacing: .04em;
}
.lang-toggle button.is-active { background: var(--ink); color: var(--cream); }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 6px;
  color: var(--ink);
}
.nav__toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,24,20,.85) 0%, rgba(30,24,20,.5) 55%, rgba(30,24,20,.2) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: clamp(90px, 16vw, 180px) 0; max-width: 660px; }
.hero__inner .eyebrow { color: #e9b98f; }
.hero__inner .eyebrow::before { background: #e9b98f; }
.hero h1 { color: var(--cream); }
.hero__lede { color: #ece2d3; font-size: 1.2rem; max-width: 520px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { display: flex; gap: 34px; margin-top: 42px; flex-wrap: wrap; }
.hero__meta div { color: var(--cream); }
.hero__meta b { font-family: var(--serif); font-size: 1.9rem; display: block; line-height: 1; }
.hero__meta span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #d8c9b4; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { position: relative; background: var(--ink); overflow: hidden; }
.page-banner__media { position: absolute; inset: 0; }
.page-banner__media img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.page-banner::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(30,24,20,.55), rgba(30,24,20,.8)); }
.page-banner__inner { position: relative; z-index: 2; padding: clamp(72px, 12vw, 130px) 0; text-align: center; }
.page-banner h1 { color: var(--cream); margin-bottom: .3rem; }
.page-banner p { color: #e6dccb; max-width: 560px; margin: 0 auto; }
.crumbs { color: #cbb89c; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.crumbs a { color: #e9b98f; }

/* ---------- Dishes (home teaser + menu) ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dish {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.dish:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dish__media { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dish:hover .dish__media img { transform: scale(1.05); }
.dish__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.dish__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.dish__name { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin: 0; }
.dish__price { font-family: var(--serif); font-size: 1.4rem; color: var(--terracotta); white-space: nowrap; }
.dish__desc { color: var(--muted); font-size: .95rem; margin: .5rem 0 0; }
.dish__tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; border: 1px solid;
}
.tag svg { width: 13px; height: 13px; }
.tag--vegan { color: var(--olive); border-color: #c4cca0; background: #f2f4e6; }
.tag--spicy { color: var(--terracotta-d); border-color: #e8bfae; background: #faeae3; }
.tag--chef  { color: var(--gold); border-color: #e6d3a2; background: #f8f0da; }

/* ---------- Menu filter + categories ---------- */
.menu-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.menu-filter button {
  font-family: var(--sans); font-weight: 700; font-size: .9rem;
  padding: 9px 20px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--line); background: var(--paper); color: var(--ink-soft);
  transition: all .18s ease;
}
.menu-filter button:hover { border-color: var(--terracotta); color: var(--terracotta); }
.menu-filter button.is-active { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

.menu-cat { margin-bottom: 60px; }
.menu-cat__head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.menu-cat__head h2 { margin: 0; white-space: nowrap; }
.menu-cat__head::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.review__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.review__stars svg { width: 18px; height: 18px; }
.review__text { font-family: var(--serif); font-size: 1.28rem; line-height: 1.4; color: var(--ink); font-style: italic; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review__ava {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--cream-2);
}
.review__name { font-weight: 700; color: var(--ink); font-size: .95rem; }
.review__role { font-size: .82rem; color: var(--muted); }

/* ---------- Split / feature blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split.reverse .split__media { order: 2; }

.feature-list { list-style: none; margin: 20px 0 0; padding: 0; }
.feature-list li { display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.feature-list li:first-child { border-top: 0; }
.feature-list svg { width: 24px; height: 24px; color: var(--terracotta); flex-shrink: 0; margin-top: 3px; }
.feature-list b { color: var(--ink); display: block; }
.feature-list span { color: var(--muted); font-size: .93rem; }

/* ---------- Hours strip ---------- */
.hours { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 44px; }
.hours__row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); }
.hours__row b { color: var(--ink); font-weight: 600; }
.hours__row span { color: var(--muted); }
.hours__row.today { color: var(--terracotta); }
.hours__row.today b, .hours__row.today span { color: var(--terracotta); font-weight: 700; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.member { text-align: center; }
.member__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.member__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.member h3 { margin-bottom: .1rem; }
.member__role { color: var(--terracotta); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.member__bio { color: var(--muted); font-size: .93rem; margin-top: .6rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery-item {
  overflow: hidden; border-radius: var(--radius); cursor: pointer; position: relative;
  background: var(--cream-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: rgba(38,32,27,.0); transition: background .25s ease;
}
.gallery-item:hover::after { background: rgba(38,32,27,.18); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(24, 19, 15, .92); align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox__close svg, .lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #eaddcb; font-size: .95rem; }

/* ---------- Booking form ---------- */
.booking-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: .85rem; color: var(--ink); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--cream); transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(181,86,58,.14); background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none; margin-top: 20px; padding: 16px 18px; border-radius: var(--radius);
  background: #eef3e2; border: 1px solid #c4cca0; color: #47502a; font-weight: 600;
}
.form-success.show { display: block; }
.booking-aside { }
.booking-aside .info-block { padding: 22px 0; border-bottom: 1px solid var(--line); }
.booking-aside .info-block:first-child { padding-top: 0; }
.info-block h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.info-block p { margin: 0; color: var(--ink); font-size: 1.05rem; }

/* ---------- Contacts ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-list li:first-child { padding-top: 0; }
.contact-list .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-list .ic svg { width: 22px; height: 22px; color: var(--terracotta); }
.contact-list h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 3px; }
.contact-list p { margin: 0; color: var(--ink); font-size: 1.08rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.2) sepia(.08); }

.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all .18s ease;
}
.socials a:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.socials svg { width: 20px; height: 20px; }

/* ---------- Video ---------- */
.video-frame { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--terracotta); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe8dd; max-width: 520px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cdbfae; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-footer .brand__name { color: var(--cream); }
.site-footer h5 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #e9b98f; margin: 0 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #cdbfae; }
.site-footer a:hover { color: var(--cream); }
.site-footer p { color: #a89987; font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #9c8d7b; }

/* ---------- i18n visibility ---------- */
[data-lang-hide] { display: none !important; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .dish-grid, .reviews, .team { grid-template-columns: repeat(2, 1fr); }
  .split, .booking-layout, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split__media { order: 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta-desktop { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 18px 24px;
    box-shadow: var(--shadow-sm);
  }
  .nav__links a { padding: 10px 0; width: 100%; font-size: 1.05rem; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .dish-grid, .reviews, .team { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .hours { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 24px; }
}

@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
}
