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

:root {
  --red:        #B8192D;
  --red-dark:   #991325;
  --navy:       #022856;
  --gold:       #F2C455;
  --cream:      #fef1d8;
  --cream-alt:  #fef1d8;
  --overlay-bg: #6E0F1C;
  --white:      #FFFFFF;
  --text:       #1a1008;
  --text-muted: #5a4a3a;
  --border:     rgba(2,40,86,.12);
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
  --serif:      'Merriweather', serif;
  --sans:       'Rubik', sans-serif;
  --header-h:   72px;
  --hero-img-w-1024: 42%;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: .9rem; font-weight: 600;
  padding: 13px 30px; border-radius: 4px; border: 2px solid transparent;
  transition: all .22s ease; white-space: nowrap; letter-spacing: .04em;
}
.btn--red       { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.btn--full { width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: block; font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--navy); letter-spacing: .1em;
  line-height: 1.1;
}

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  transition: background .3s, box-shadow .3s;
}
.header.scrolled { background: var(--cream); }
.header__inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
}
.header__logo img { height: 34px; width: auto; transition: opacity .2s; }
.header__logo:hover img { opacity: .8; }

.header__burger {
  display: flex; flex-direction: column; gap: 7px;
  padding: 6px; background: none;
}
.header__burger span {
  display: block; width: 26px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: background .3s;
}
.header.nav-open .header__burger span { background: var(--white); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 210;
  background: var(--overlay-bg);
  display: flex; flex-direction: column;
  padding: 0 0 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-overlay__top {
  height: var(--header-h); flex-shrink: 0;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-overlay__logo img { height: 34px; width: auto; }

.nav-overlay__close {
  font-size: 1.6rem; color: var(--gold);
  background: none; border: none; cursor: pointer;
  line-height: 1; padding: 4px 8px;
  transition: transform .2s;
}
.nav-overlay__close:hover { transform: rotate(90deg); }

.nav-overlay__links {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.nav-overlay__links a {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--gold);
  letter-spacing: .22em; text-align: center;
  transition: color .2s, transform .2s;
  display: block; line-height: 1.3;
}
.nav-overlay__links a:hover { color: var(--white); transform: translateX(8px); }

.nav-overlay__contact {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
  flex-shrink: 0; padding-bottom: 36px;
}
.nav-overlay__contact a {
  font-size: .85rem; color: rgba(255,255,255,.65);
  transition: color .2s;
}
.nav-overlay__contact a:hover { color: rgba(255,255,255,.9); }
.nav-overlay__contact strong { color: var(--gold); }

.hero {
  position: relative;
  display: flex; min-height: 100vh; overflow: hidden;
  background: var(--cream);
}

.hero__bg {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  z-index: 0; pointer-events: none;
  background-image: url('images/hero-002.webp');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__content-wrap {
  position: relative; z-index: 1;
  width: 50%;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--header-h) + 15vh);
  padding-bottom: 60px;
  padding-right: 48px;
  padding-left: max(calc((100vw - 1200px) / 2 + 28px), 36px);
}

.hero__label {
  display: inline-block; font-size: .85rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
}
.hero__title {
  font-family: var(--serif); font-size: clamp(4rem, 6.5vw, 7.5rem);
  font-weight: 900; color: var(--red-dark);
  letter-spacing: .08em; line-height: .92;
  margin-bottom: 28px;
}
.hero__desc {
  font-size: 1.2rem; font-weight: 500; color: var(--navy);
  line-height: 1.7;
}

.hero__ribbon {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero__ribbon--1 {
  top: 100px;
  left: -40px;
  width: 300px;
}
.hero__ribbon--2 {
  top: 30px;
  right: -100px;
  width: 400px;
}

.menu-title-img {
  display: block;
  max-width: 540px;
  width: 85%;
  margin: 0 auto 16px;
}

.menu-section { background: var(--cream-alt); }
.menu-section .section-title {
  font-size: clamp(4rem, 6vw, 5rem);
  color: var(--red);
  filter:
    drop-shadow(-2px  0    0 var(--gold))
    drop-shadow( 2px  0    0 var(--gold))
    drop-shadow(  0  -2px  0 var(--gold))
    drop-shadow(  0   2px  0 var(--gold));
}

.menu-filters {
  display: flex; gap: 20px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 48px;
  position: sticky; top: var(--header-h);
  z-index: 100;
  background: var(--cream-alt);
  padding: 16px 28px;
  margin-top: -16px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.filter-btn {
  position: relative;
  padding: 4px 20px 4px 14px;
  border: none; border-radius: 0; background: none;
  font-family: var(--serif); font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); opacity: .5;
  transition: opacity .2s, color .2s;
}
.filter-btn::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 2px; height: 14px;
  background: var(--red);
  transition: background .2s;
}
.filter-btn:hover { opacity: 1; color: var(--red); }
.filter-btn:hover::before { background: var(--navy); }
.filter-btn.active { opacity: 1; color: var(--red); }
.filter-btn.active::before { background: var(--navy); }

.menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  animation: cardIn .3s ease;
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: none; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-card__img {
  width: 100%; aspect-ratio: 1/1;
  position: relative; overflow: hidden;
}
.menu-card__img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.menu-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.menu-card:hover .menu-card__img img { transform: scale(1.06); }

.menu-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.menu-card__desc { font-size: .78rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.menu-card__name {
  font-family: var(--serif); font-size: .95rem;
  font-weight: 700; color: var(--navy); line-height: 1.3;
  width: 100%;
}
.menu-card__foot {
  display: flex; justify-content: flex-end; align-items: center; gap: 6px;
  margin-top: 12px;
}
.menu-card__price { font-weight: 700; color: var(--red); font-size: 1.1rem; white-space: nowrap; }
.menu-card__price sup, .menu-card__size sup, .size-price sup { font-weight: 400; font-size: .55em; }
.menu-card__price--sizes { display: flex; flex-direction: row; gap: 12px; }
.menu-card__size { display: flex; flex-direction: column; gap: 1px; }
.size-label { font-size: .68rem; color: var(--text-muted); font-weight: 600; }
.size-price { font-weight: 700; color: var(--red); font-size: 1.1rem; white-space: nowrap; }
.menu-card__cat {
  display: inline-block;
  font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red-dark); background: rgba(185,25,45,.08);
  padding: 3px 8px; border-radius: 50px;
}

.about-section { background: var(--cream); }

.about-inner {
  display: block;
  max-width: 720px; margin: 0 auto;
}

.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-content .section-label { display: block; text-align: left; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; font-size: .97rem; line-height: 1.8; }

.about-stats {
  display: flex; gap: 32px; margin-top: 36px;
  padding-top: 32px; border-top: 2px solid var(--border);
}
.about-stat__num {
  display: block; font-family: var(--serif);
  font-size: 1.8rem; font-weight: 900; color: var(--red);
  line-height: 1;
}
.about-stat__label { font-size: .78rem; color: var(--text-muted); font-weight: 500; }

.gallery-section { overflow: hidden; }
.gallery-track {
  display: flex;
  width: max-content;
  animation: gallery-scroll 22s linear infinite;
}
.gallery-section:hover .gallery-track { animation-play-state: paused; }
.gallery-item {
  width: 520px;
  height: 600px;
  flex-shrink: 0;
  overflow: hidden;
  margin-right: 4px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 860px) {
  .gallery-item { width: 75vw; height: 52vw; }
}

.contact-section { background: var(--cream); }
.contact-section .section-label { color: var(--red); }
.contact-section .section-title { color: var(--navy); }

.contact-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item__icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
  background: rgba(185,25,45,.08); border: 1px solid rgba(185,25,45,.15);
  display: flex; align-items: center; justify-content: center;
}
.info-item__icon svg { width: 18px; height: 18px; color: var(--red); }
.info-item strong { display: block; color: var(--navy); font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.info-item p, .info-item a { color: var(--text-muted); font-size: .95rem; line-height: 1.6; }
.info-item a:hover { color: var(--red); }

.platforms-block { margin-top: 8px; }
.platforms-label { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.platforms-row { display: flex; gap: 10px; }
.platform-logo {
  width: 50px; height: 50px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.3); transition: transform .2s;
}
.platform-logo:hover { transform: translateY(-3px); }
.platform-logo img { width: 100%; height: 100%; object-fit: cover; }

.reservation-card {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 18px; padding: 28px;
}
.reservation-card__title {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-bottom: 18px; letter-spacing: .04em;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 9px 12px; border: 1.5px solid rgba(2,40,86,.18);
  border-radius: 8px; font-family: var(--sans); font-size: .88rem;
  color: var(--text); background: rgba(255,255,255,.55); outline: none;
  transition: border .2s, background .2s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); background: rgba(255,255,255,.85); }
.form-group textarea { resize: vertical; min-height: 72px; }

.reservation-success {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px; gap: 14px;
}
.reservation-success__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(185,25,45,.1); color: var(--red);
  font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.reservation-success h4 { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); }
.reservation-success p { color: var(--text-muted); }

.footer { background: #6E0F1C; padding: 60px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { height: 40px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .88rem; line-height: 1.7; }

.footer-links h4 {
  color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a,
.footer-links li { color: rgba(255,255,255,.4); font-size: .88rem; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  padding-top: 24px; font-size: .78rem; color: rgba(255,255,255,.2);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--gold); }
.footer-designer {
  display: flex; align-items: center;
  opacity: .45; transition: opacity .2s;
}
.footer-designer:hover { opacity: 1; }
.footer-designer img { height: 22px; width: auto; }

.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 100;
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 13px 22px; border-radius: 50px;
  font-size: .88rem; font-weight: 600;
  box-shadow: 0 6px 24px rgba(185,25,45,.45);
  transition: all .25s; border: none; cursor: pointer;
}
.fab:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(185,25,45,.55); }
.fab svg { width: 18px; height: 18px; }

@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .hero__bg { width: var(--hero-img-w-1024); }
  .hero__content-wrap {
    width: 60%;
    padding-top: calc(var(--header-h) + 4vh);
    padding-right: 32px;
    justify-content: center;
  }
  .hero__title { font-size: clamp(2.8rem, 5vw, 4.5rem); }
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column-reverse; height: 100svh; min-height: 100svh;
  }
  .hero__bg {
    position: relative; top: auto; right: auto;
    width: 100%; flex: 1; min-height: 0;
    background-size: contain;
    background-position: center center;
  }
  .hero__content-wrap {
    width: 100%; flex-shrink: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px 36px 28px;
    padding-top: calc(var(--header-h) + 12px + 20svh);
  }
  .hero__title { font-size: clamp(3rem, 8vw, 4.5rem); }
  .hero__label { font-size: .8rem; margin-bottom: 14px; }
  .hero__desc { font-size: 1.05rem; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .about-content .section-title,
  .about-content .section-label { text-align: center; }
  .about-stats { justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-overlay { padding: 0 0 32px; }
  .nav-overlay__top { padding: 0 24px; }
}

@media (max-width: 600px) {
  :root { --header-h: 60px; }
  .hero__ribbon--1 { width: 200px; top: 750px; left: -25px; }
  .hero__ribbon--2 { display: none; }
  .section { padding: 64px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { flex-direction: row; min-height: 110px; }
  .menu-card__img { width: 120px; min-width: 120px; aspect-ratio: unset; align-self: stretch; }
  .menu-card__img img { height: 100%; }
  .menu-card__body { padding: 10px 12px 12px; }
  .menu-card__name { font-size: .88rem; }
  .menu-card__desc { font-size: .74rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .menu-card__foot { flex-wrap: wrap; gap: 4px; }
  .menu-card__size { font-size: .8rem; }
  .hero__content-wrap { padding: 16px 20px 20px; padding-top: calc(var(--header-h) + 12px + 10svh); text-align: center; }
  .hero__title { font-size: clamp(2.8rem, 11vw, 3.8rem); }
  .hero__label { font-size: .75rem; margin-bottom: 12px; }
  .hero__desc { font-size: 1rem; }
  .menu-filters {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    padding: 12px 20px; gap: 8px; scrollbar-width: none;
  }
  .menu-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; padding: 7px 16px; font-size: .8rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .reservation-card { padding: 20px 16px; }
  .reservation-card__title { font-size: 1.1rem; margin-bottom: 12px; }
  .form-group { margin-bottom: 10px; }
  .form-group input, .form-group select, .form-group textarea { padding: 8px 11px; font-size: .85rem; }
  .nav-overlay__links a { font-size: clamp(1.8rem, 8vw, 2.8rem); letter-spacing: .14em; }
  .fab span { display: none; }
  .fab { padding: 14px; border-radius: 50%; }
  .about-stats { flex-wrap: wrap; gap: 16px; }
}
