/* ═══════════════════════════════════════════════════
   EMILIO RESTAURACJA — Italian Luxury Redesign
   Palette: #3d0a05 (deep burgundy), black, white
   Fonts:  Cormorant Garamond (display), Source Sans Pro (body)
   ═══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --black: #0b0b0b;
  --black2: #141414;
  --black3: #1c1c1c;
  --white: #faf9f7;
  --white2: #f0eeeb;
  --white3: #e5e2de;
  --burgundy: #3d0a05;
  --burg-light: #5a1810;
  --burg-dark: #2a0603;
  --text-w: #faf9f7;
  --text-w2: rgba(250, 249, 247, .6);
  --text-b: #1a1a1a;
  --text-b2: #555;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Source Sans Pro', -apple-system, Helvetica, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --wrap: 1200px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none
}

html::-webkit-scrollbar {
  display: none
}

body {
  font-family: var(--ff-body);
  color: var(--text-w);
  background: var(--black);
  line-height: 1.75;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden
}

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

a {
  color: inherit;
  text-decoration: none
}

ul,
ol {
  list-style: none
}

button {
  font-family: inherit
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px)
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes heroScale {
  from {
    transform: scale(1.02)
  }

  to {
    transform: scale(1.1)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out)
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 20px 0;
  transition: padding .4s var(--ease), background .4s var(--ease)
}

.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(11, 11, 11, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px)
}

.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav__logo img {
  height: 58px;
  transition: height .3s var(--ease)
}

.nav.is-scrolled .nav__logo img {
  height: 46px
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav__menu a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-w2);
  transition: color .25s
}

.nav__menu a:hover {
  color: #fff
}

.nav__cta {
  background: var(--burgundy) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-weight: 600 !important;
  letter-spacing: .1em !important;
  transition: background .25s, transform .25s !important
}

.nav__cta:hover {
  background: var(--burg-light) !important;
  transform: translateY(-1px)
}

.nav__burger {
  display: none;
  background: 0;
  border: 0;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 6px;
  z-index: 901
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all .3s var(--ease)
}

.nav__burger.open span:first-child {
  transform: rotate(45deg) translate(5.5px, 5.5px)
}

.nav__burger.open span:last-child {
  transform: rotate(-45deg) translate(5.5px, -5.5px)
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero__media {
  position: absolute;
  inset: 0
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroScale 22s var(--ease) infinite alternate
}

.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, .5) 0%, rgba(11, 11, 11, .35) 35%, rgba(11, 11, 11, .65) 70%, rgba(11, 11, 11, .95) 100%)
}

.hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  animation: fadeUp 1.1s var(--ease-out)
}

.hero__kicker {
  font-family: var(--ff-body);
  font-size: 14px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 300;
  color: #fff;
  line-height: .88;
  margin-bottom: 12px;
  letter-spacing: -.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .4)
}

.hero__sub {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4)
}

.hero__line {
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--burgundy);
  margin: 22px auto
}

.hero__quote {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 40px;
  letter-spacing: .03em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3)
}

.hero__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px
}

.hero__tel {
  font-size: 13px;
  color: var(--text-w2);
  letter-spacing: .06em;
  transition: color .25s
}

.hero__tel:hover {
  color: #fff
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .2);
  position: relative;
  overflow: hidden
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--burgundy);
  animation: pulse 2.2s var(--ease) infinite
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all .3s var(--ease);
  background: var(--burgundy);
  color: #fff
}

.btn:hover {
  background: var(--burg-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61, 10, 5, .35)
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .6);
  box-shadow: none
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--burgundy);
  color: var(--text-w)
}

.btn--outline:hover {
  background: var(--burgundy);
  color: #fff
}

.btn--dark {
  background: var(--burgundy);
  color: #fff
}

.btn--dark:hover {
  background: var(--burg-light)
}

.btn--full {
  width: 100%
}

/* ═══════════ SECTIONS ═══════════ */
.sec {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative
}

.sec--dark {
  background: var(--black)
}

.sec--light {
  background: var(--white);
  color: var(--text-b)
}

.sec__head {
  text-align: center;
  margin-bottom: 56px
}

.sec__tag {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 12px
}

.sec__tag--dark {
  color: var(--burgundy)
}

.sec__title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.01em
}

.sec__title--dark {
  color: var(--text-b)
}

/* ═══════════ MENU TABS ═══════════ */
.tabs__bar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 4px;
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto
}

.tabs__btn {
  flex: 1;
  padding: 13px 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, .4);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative
}

.tabs__btn+.tabs__btn {
  border-left: 1px solid rgba(255, 255, 255, .06)
}

.tabs__btn:hover {
  color: rgba(255, 255, 255, .7)
}

.tabs__btn.is-active {
  background: var(--burgundy);
  color: #fff
}

.tabs__panel {
  display: none;
  animation: fadeUp .5s var(--ease-out)
}

.tabs__panel.is-active {
  display: block
}

.menu-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--black2)
}

.menu-split__img {
  overflow: hidden
}

.menu-split__img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform .8s var(--ease)
}

.menu-split:hover .menu-split__img img {
  transform: scale(1.05)
}

.menu-split__txt {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center
}

.menu-split__txt h3 {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #fff
}

.menu-split__txt p {
  font-size: 15px;
  color: var(--text-w2);
  line-height: 1.85;
  margin-bottom: 28px
}

/* ═══════════ ABOUT ═══════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center
}

.about__gallery {
  position: relative
}

.about__main {
  border-radius: 6px;
  overflow: hidden
}

.about__main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform .7s var(--ease)
}

.about__main:hover img {
  transform: scale(1.03)
}

.about__side {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15)
}

.about__side img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about__motto {
  font-family: var(--ff-display);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 20px;
  line-height: 1.5
}

.about__body {
  font-size: 15px;
  color: var(--text-b2);
  line-height: 1.9;
  margin-bottom: 24px
}

.about__bq {
  padding: 24px 28px;
  background: var(--white2);
  border-left: 3px solid var(--burgundy);
  border-radius: 0 6px 6px 0
}

.about__bq p {
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-b2);
  line-height: 1.85;
  margin-bottom: 8px
}

.about__bq cite {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--burgundy);
  font-style: normal;
  letter-spacing: .08em
}

/* ═══════════ GALLERY ═══════════ */
.gal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px
}

.gal__item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 250px;
  cursor: pointer
}

.gal__item--w2 {
  grid-column: span 2
}

.gal__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s
}

.gal__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 11, .55) 0%, transparent 40%);
  opacity: 0;
  transition: opacity .3s
}

.gal__item:hover::after {
  opacity: 1
}

.gal__item:hover img {
  transform: scale(1.07)
}

/* ═══════════ SPLIT (catering / casa) ═══════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center
}

.split--reverse {
  direction: rtl
}

.split--reverse>* {
  direction: ltr
}

.split__img {
  border-radius: 6px;
  overflow: hidden
}

.split__img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .7s var(--ease)
}

.split__img:hover img {
  transform: scale(1.04)
}

.split__txt h2 {
  margin-bottom: 4px
}

.split__txt p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px
}

.sec--light .split__txt p {
  color: var(--text-b2)
}

.sec--dark .split__txt p {
  color: var(--text-w2)
}

.check-list {
  margin-bottom: 20px
}

.check-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-b2)
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 700
}

.split__contact {
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--text-b2)
}

.split__contact a {
  color: var(--burgundy);
  font-weight: 600
}

/* --- Casa info --- */
.casa-info {
  display: flex;
  gap: 20px;
  margin: 20px 0 28px
}

.casa-info__item {
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 4px;
  text-align: center
}

.casa-info__val {
  display: block;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1
}

.casa-info__label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-w2)
}

/* ═══════════ BANNER (Bistro) ═══════════ */
.sec--banner {
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden
}

.banner__bg {
  position: absolute;
  inset: 0
}

.banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.banner__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 11, 11, .88), rgba(61, 10, 5, .60))
}

.banner__body {
  position: relative;
  z-index: 2;
  max-width: 540px
}

.banner__desc {
  font-size: 16px;
  color: var(--text-w2);
  line-height: 1.85;
  margin-bottom: 28px
}

/* ═══════════ REZERWACJA ═══════════ */
.sec--rez {
  overflow: hidden
}

.rez__bg {
  position: absolute;
  inset: 0
}

.rez__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.rez__fade {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, .88)
}

.rez {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start
}

.rez__note {
  font-size: 14px;
  color: var(--text-w2);
  line-height: 1.8;
  margin-bottom: 28px;
  padding: 16px 20px;
  border-left: 3px solid var(--burgundy);
  background: rgba(61, 10, 5, .12);
  border-radius: 0 4px 4px 0
}

.rez__cards {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.rez__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 6px;
  transition: all .25s var(--ease)
}

.rez__card:hover {
  border-color: var(--burgundy);
  background: rgba(61, 10, 5, .08);
  transform: translateX(4px)
}

.rez__card svg {
  color: var(--burgundy);
  flex-shrink: 0
}

.rez__card small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 2px
}

.rez__card strong {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .01em
}

.rez__form {
  background: var(--black2);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, .05)
}

.rez__form-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 24px;
  color: #fff
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px
}

.field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-w2)
}

.field input,
.field select,
.field textarea {
  padding: 11px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 4px;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  outline: 0;
  transition: border .25s, background .25s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--burgundy);
  background: rgba(61, 10, 5, .06)
}

.field textarea {
  resize: vertical;
  min-height: 70px
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

/* ═══════════ FOOTER ═══════════ */
.foot {
  background: var(--black2);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.foot__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr .8fr;
  gap: 36px;
  margin-bottom: 36px
}

.foot__logo {
  height: 36px;
  margin-bottom: 12px
}

.foot__brand p {
  font-size: 14px;
  color: var(--text-w2);
  max-width: 260px;
  line-height: 1.7
}

.foot__col h4 {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
  color: #fff
}

.foot__col p,
.foot__col li {
  font-size: 13px;
  color: var(--text-w2);
  margin-bottom: 6px;
  line-height: 1.6
}

.foot__col a {
  transition: color .2s
}

.foot__col a:hover {
  color: #fff
}

.foot__social {
  display: flex;
  gap: 16px;
  margin-top: 16px
}

.foot__social a {
  color: rgba(255, 255, 255, .4);
  transition: color .2s
}

.foot__social a:hover {
  color: #c4837c
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 0
}

.hours>div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: 13px
}

.hours dt {
  color: var(--text-w2);
  font-weight: 300
}

.hours dd {
  color: #fff;
  font-weight: 500
}

.foot__map {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
  height: 260px
}

.foot__map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(.45) brightness(.7);
  transition: filter .3s
}

.foot__map:hover iframe {
  filter: grayscale(0) brightness(.85)
}

.foot__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: 13px;
  color: rgba(255, 255, 255, .45)
}

.foot__bot a {
  color: #c4837c;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .2s
}

.foot__bot a:hover {
  color: #fff;
  text-decoration: underline
}

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11, 11, 11, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 40px;
  backdrop-filter: blur(16px);
  animation: fadeUp .3s var(--ease-out)
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5)
}

/* ═══════════ RESPONSIVE ═══════════ */
@media(max-width:1024px) {

  .about,
  .split,
  .split--reverse,
  .rez {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .split--reverse {
    direction: ltr
  }

  .foot__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .gal {
    grid-template-columns: repeat(2, 1fr)
  }

  .menu-split {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  .nav__burger {
    display: flex
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 11, .97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .45s var(--ease-out);
    backdrop-filter: blur(20px)
  }

  .nav__menu.is-open {
    transform: translateX(0)
  }

  .nav__menu a {
    font-size: 16px;
    letter-spacing: .1em
  }

  .gal {
    grid-template-columns: 1fr 1fr
  }

  .gal__item {
    height: 170px
  }

  .gal__item--w2 {
    grid-column: span 2;
    height: 190px
  }

  .field-row {
    grid-template-columns: 1fr
  }

  .foot__top {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .foot__bot {
    flex-direction: column;
    gap: 6px;
    text-align: center
  }

  .about__side {
    width: 140px;
    height: 140px;
    right: -8px;
    bottom: -16px
  }

  .about__main img {
    height: 380px
  }

  .hero__scroll {
    display: none
  }

  .casa-info {
    flex-direction: column;
    gap: 10px
  }
}

@media(max-width:480px) {
  .gal {
    grid-template-columns: 1fr
  }

  .gal__item--w2 {
    grid-column: span 1
  }

  .hero__btns {
    flex-direction: column;
    align-items: center
  }
}

/* ═══════════ MENU DISH LIST ═══════════ */
.menu-split__kicker {
  display: block;
  font-family: var(--ff-display);
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .12em;
  margin-bottom: 4px
}

.dish-list {
  margin: 18px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

.dish-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.dish-item__name {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  flex-shrink: 0;
  line-height: 1.2
}

.dish-item__dots {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .08)
}

.dish-item__note {
  font-family: var(--ff-display);
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, .4);
  flex-shrink: 0
}

/* Refined paragraph after dish-list */
.menu-split__txt > p {
  font-size: 15px;
  color: rgba(250, 249, 247, .55);
  line-height: 1.85;
  margin-bottom: 24px
}

/* ═══════════ GALLERY — richer hover ═══════════ */
.gal__item::after {
  background: linear-gradient(0deg, rgba(11, 11, 11, .72) 0%, rgba(61, 10, 5, .18) 55%, transparent 100%)
}

/* ═══════════ HERO — top accent ═══════════ */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--burgundy);
  z-index: 9999;
  pointer-events: none
}

/* ═══════════ SECTION DIVIDER ═══════════ */
.sec--dark + .sec--light,
.sec--light + .sec--dark {
  border-top: none
}

/* ═══════════ SELECTION ═══════════ */
::selection {
  background: rgba(61, 10, 5, .35);
  color: #fff
}

/* --- Language Dropdown --- */
.lang {
  position: relative;
  display: flex;
  align-items: center;
}
.lang__btn {
  background: 0;
  border: 0;
  color: var(--text-w2);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: color .25s;
}
.lang__btn:hover {
  color: #fff;
}
.lang__btn svg {
  opacity: .5;
  transition: transform .25s;
}
.lang:hover .lang__btn svg {
  transform: rotate(180deg);
  opacity: 1;
}
.lang__menu {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%) translateY(10px);
  background: var(--burgundy);
  border-radius: 4px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  min-width: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 100;
}
.lang:hover .lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}
.lang__menu a {
  padding: 8px 12px;
  color: rgba(255,255,255,.6) !important;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .14em;
  border-radius: 2px;
  transition: all .2s !important;
  text-align: center;
  display: block;
  font-weight: 500;
}
.lang__menu a:hover, .lang__menu a.is-active {
  background: rgba(255,255,255,.1);
  color: #fff !important;
}

@media(max-width: 1024px) {
  .lang__menu {
    right: 0;
    transform: translateX(0) translateY(10px);
  }
  .lang:hover .lang__menu {
    transform: translateX(0) translateY(0);
  }
}
@media(max-width: 768px) {
  .lang {
    margin-top: 20px;
    justify-content: center;
    width: 100%;
  }
  .lang__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    flex-direction: row;
    justify-content: center;
    background: transparent;
    padding: 0;
  }
  .lang__btn svg { display: none; }
  .lang__menu a {
    padding: 8px 16px;
    font-size: 14px;
  }
  .lang:hover .lang__menu {
    transform: none;
  }
}
