:root {
  --orange: #ff773c;
  --orange-lt: #ff522f;
  --blue: #4a8ec2;
  --blue-lt: #c8dff2;
  --blue-bg: #d6e9f8;
  --butter: #f9e0a1;
  --butter-dk: #ead9bb;
  --dark: #3b1902;
  --text: #3b1902;
  --white: #fefefe;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --nav-h: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--butter);
  color: var(--dark);
}

.ph { font-size: 1.3em !important; }

/* ── CHECKER UTIL ── */
.checker {
  background-image:
    linear-gradient(45deg, var(--blue) 25%, transparent 25%),
    linear-gradient(-45deg, var(--blue) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--blue) 75%),
    linear-gradient(-45deg, transparent 75%, var(--blue) 75%);
  background-size: 10px 10px;
  background-position:
    0 0,
    0 5px,
    5px -5px,
    -5px 0px;
}

/* ── NAV ── */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
}
nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--dark);
  border-bottom: 3px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
/* Logo lives OUTSIDE nav so overflow:hidden can't clip it */
.nav-logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(10px);
  z-index: 101;
  text-decoration: none;
}
.nav-logo img {
  height: 92px;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-btn-map {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
  flex-shrink: 0;
}
.nav-btn-map:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.nav-cta {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--dark);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 100px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--orange-lt);
}

/* Mobile-only nav elements (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.nav-btn-phone {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-btn-phone:hover {
  background: var(--orange-lt);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 98;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}
.nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
}
.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-drawer-links li a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  color: var(--white);
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.nav-drawer-links li a:hover {
  color: var(--orange);
  padding-left: 8px;
}
.nav-drawer-bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-drawer-bottom .nav-btn-map {
  display: flex;
  border-color: rgba(255, 255, 255, 0.3);
  width: 44px;
  align-self: flex-start;
}
.nav-drawer-bottom .nav-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}
.nav-drawer-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.nav-drawer-order:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.nav-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  color: var(--white);
  border-radius: 100px;
  transition: background 0.2s;
}
.nav-drawer-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ── HERO ── */
#hero {
  height: min(calc(100vh - var(--nav-h)), 900px);
  margin-top: var(--nav-h);
  background: var(--orange);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}
.hero-food-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  grid-row: 1;
}
.hero-food-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 80px;
  position: relative;
  z-index: 2;
  grid-row: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  font-weight: 700;
  text-transform: none;
}
.hero-sub {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(39, 16, 1, 0.75);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 48px;
}
.hero-wolt-link {
  color: var(--dark);
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.hero-wolt-link:hover { opacity: 0.6; }
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-white {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s;
}
.btn-white:hover {
  transform: translateY(-2px);
}
.btn-outline-white {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid rgba(39, 16, 1, 0.5);
  color: var(--dark);
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover {
  border-color: var(--dark);
  background: rgba(39, 16, 1, 0.08);
}
.btn-elvitel {
  background: var(--orange);
  color: #fff;
  border: 2px solid rgba(39,16,1,0.25);
}
.btn-elvitel:hover { background: #d94f00; border-color: rgba(39,16,1,0.35); }
.btn-wolt {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: #009DE0;
  transition: background 0.2s, transform 0.15s;
}
.btn-wolt:hover {
  background: #111;
  transform: translateY(-2px);
}
.hero-right {
  display: block;
  position: relative;
  grid-row: 1;
}
.hero-logo-wrap {
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-wrap img {
  width: 260px;
  filter: brightness(0) invert(1);
}
.hero-year {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--dark);
  color: var(--orange);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 20px;
  border-radius: 100px;
}
/* Checker stripe at bottom of hero */
.hero-checker-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  opacity: 0.3;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--dark);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: none;
  border-bottom: 3px solid var(--orange);
  grid-column: 1 / -1;
  grid-row: 2;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 18s linear infinite;
}
.marquee-item {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 32px;
  opacity: 0.7;
}
.marquee-dot {
  color: var(--orange);
  opacity: 1 !important;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SOCIAL PROOF ── */
#social-proof {
  background: var(--butter);
  padding: 120px 80px;
  border-bottom: 2px solid var(--dark);
  position: relative;
  overflow: hidden;
}
.sp-float {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  z-index: 0;
}
.sp-float--1 {
  width: 220px;
  bottom: 60px;
  left: -30px;
  transform: rotate(12deg);
  animation: spFloat1 7s ease-in-out infinite;
}
.sp-float--2 {
  width: 190px;
  top: 60px;
  right: -20px;
  transform: rotate(-14deg);
  animation: spFloat2 9s ease-in-out infinite;
}
.sp-float--3 {
  width: 260px;
  bottom: -40px;
  right: 40px;
  transform: rotate(-22deg);
  animation: spFloat3 11s ease-in-out infinite;
}
@keyframes spFloat1 {
  0%,
  100% {
    transform: rotate(-18deg) translateY(0);
  }
  50% {
    transform: rotate(-18deg) translateY(-18px);
  }
}
@keyframes spFloat2 {
  0%,
  100% {
    transform: rotate(14deg) translateY(0);
  }
  50% {
    transform: rotate(14deg) translateY(-14px);
  }
}
@keyframes spFloat3 {
  0%,
  100% {
    transform: translateY(-50%) rotate(-8deg) translateX(0);
  }
  50% {
    transform: translateY(-50%) rotate(-8deg) translateX(10px);
  }
}
.sp-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.sp-header .section-title em {
  color: var(--orange);
}
.sp-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.review-card {
  background: var(--white);
  padding: 36px 28px;
  border: 2px solid var(--dark);
}
.review-stars {
  font-size: 0.9rem;
  color: var(--orange);
  margin-bottom: 16px;
}
.review-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 700;
}
.review-author {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* ── ABOUT ── */
#about {
  background: var(--butter);
  padding: 120px 80px;
  border-bottom: 2px solid var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.tag.blue {
  background: var(--blue);
}
.tag.dark {
  background: var(--dark);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.section-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
}
.section-body {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-bullets {
  list-style: none;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}
.about-bullet-star {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-hundred {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 900;
  vertical-align: baseline;
}
.about-image-box {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 2px solid var(--dark);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-checker-side {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 100%;
  opacity: 0.25;
}

/* ── FEATURED DISH ── */
#featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  border-top: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
}
.featured-eyebrow {
  grid-column: 1 / -1;
  grid-row: 1;
  background: var(--dark);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: normal;
  color: var(--white);
  text-align: center;
  padding: 22px 40px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
}
.featured-eyebrow span {
  text-transform: none;
  font-style:italic;
}
.featured-eyebrow--bottom {
  grid-column: 1 / -1;
  grid-row: 3;
  border-bottom: none;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}
.featured-img-side {
  grid-row: 2;
  background: url("../img/kockasterito.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.featured-dish-img {
  width: 480px;
  height: 480px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.55));
  animation: dishRotate 40s linear infinite;
}
@keyframes dishRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.featured-text-side {
  grid-row: 2;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.featured-title {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 24px;
}
.featured-title em {
  color: var(--orange);
  text-transform:none;
}
.featured-body {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}
.featured-counter {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.featured-counter-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.counter-display {
  display: flex;
  gap: 6px;
  align-items: center;
}
.counter-digit {
  width: 54px;
  height: 72px;
  background: #080401;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--orange);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 6px 18px rgba(0, 0, 0, 0.5);
}
.counter-digit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.featured-counter-sublabel {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--orange);
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 100px;
  margin-top: 16px;
  align-self: flex-start;
  transition: background 0.2s;
}
.featured-cta:hover {
  background: var(--orange-lt);
}

/* ── FOOD SLIDER ── */
#food-slider {
  background: var(--orange);
  padding: 80px 0 64px;
  overflow: hidden;
}
.fslider-header {
  text-align: center;
  padding: 0 24px 48px;
}
.fslider-title {
  color: #fff;
  margin: 0;
}
.fslider-title em {
  color: #000;
  font-style: italic;
}
.fslider-track-wrap {
  overflow: hidden;
  width: 100%;
}
.fslider-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  animation: fslide 36s linear infinite;
  animation-fill-mode: none;
}
.fslider-track:hover {
  animation-play-state: paused;
}
@keyframes fslide {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.fslider-card {
  width: calc(33.333vw - 14px);
  flex-shrink: 0;
  background: var(--butter);
  cursor: default;
  padding: 12px 12px 0;
}
.fslider-img-wrap {
  overflow: hidden;
}
.fslider-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fslider-card:hover img {
  transform: scale(1.07);
}
.fslider-info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fslider-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}
.fslider-stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.fslider-footer {
  text-align: center;
  padding: 48px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.fslider-footnote {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.fslider-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 32px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.fslider-cta:hover {
  background: #000;
  transform: translateY(-2px);
}
.fslider-cta svg {
  flex-shrink: 0;
}

/* ── GALLERY ── */
#gallery {
  background: var(--dark);
  padding: 80px;
  border-bottom: 2px solid var(--orange);
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.gallery-header .section-title {
  color: var(--white);
  margin-bottom: 0;
}
.gallery-header .tag {
  background: var(--orange);
}
.gallery-footer {
  text-align: center;
  padding: 40px 0 0;
}
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 6px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(2) {
  grid-column: span 2;
}

/* ── REVIEWS ── */
#reviews {
  background: #2b6cb0;
  padding: 80px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='500'%3E%3Cpath d='M-20,80 Q150,40 350,90 Q550,135 750,75 Q850,55 920,80' stroke='%231a4f8a' stroke-width='90' fill='none' stroke-opacity='0.45' stroke-linecap='round'/%3E%3Cpath d='M-20,220 Q100,195 280,230 Q480,268 680,210 Q800,185 920,225' stroke='%231a4f8a' stroke-width='70' fill='none' stroke-opacity='0.3' stroke-linecap='round'/%3E%3Cpath d='M-20,360 Q200,325 380,370 Q560,410 760,348 Q840,328 920,362' stroke='%231a4f8a' stroke-width='80' fill='none' stroke-opacity='0.38' stroke-linecap='round'/%3E%3Cpath d='M-20,470 Q180,450 340,478 Q520,500 720,458 Q830,440 920,472' stroke='%231a4f8a' stroke-width='55' fill='none' stroke-opacity='0.25' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.rv-float {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}
.rv-float--1 {
  width: 290px;
  top: 10%;
  left: 2%;
  transform: rotate(-15deg);
  animation: rvFloat1 8s ease-in-out infinite;
}
.rv-float--2 {
  width: 310px;
  bottom: 10%;
  left: 3%;
  transform: rotate(12deg);
  animation: rvFloat2 10s ease-in-out infinite;
}
.rv-float--3 {
  width: 265px;
  top: 50%;
  left: 14%;
  transform: translateY(-50%) rotate(-8deg);
  animation: rvFloat3 9s ease-in-out infinite;
}
.rv-float--4 {
  width: 300px;
  top: 10%;
  right: 2%;
  transform: rotate(18deg);
  animation: rvFloat4 11s ease-in-out infinite;
}
.rv-float--5 {
  width: 380px;
  bottom: 8%;
  right: 3%;
  transform: rotate(-22deg);
  animation: rvFloat5 7s ease-in-out infinite;
}
@keyframes rvFloat1 {
  0%,
  100% {
    transform: rotate(-15deg) translateY(0);
  }
  50% {
    transform: rotate(-15deg) translateY(-16px);
  }
}
@keyframes rvFloat2 {
  0%,
  100% {
    transform: rotate(12deg) translateY(0);
  }
  50% {
    transform: rotate(12deg) translateY(-12px);
  }
}
@keyframes rvFloat3 {
  0%,
  100% {
    transform: translateY(-50%) rotate(-8deg) translateX(0);
  }
  50% {
    transform: translateY(-50%) rotate(-8deg) translateX(8px);
  }
}
@keyframes rvFloat4 {
  0%,
  100% {
    transform: rotate(18deg) translateY(0);
  }
  50% {
    transform: rotate(18deg) translateY(-14px);
  }
}
@keyframes rvFloat5 {
  0%,
  100% {
    transform: rotate(-22deg) translateY(0);
  }
  50% {
    transform: rotate(-22deg) translateY(-10px);
  }
}
.rv-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 48px 80px;
}
.rv-word {
  margin: 0;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.rv-word--1 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(7rem, 12vw, 10rem);
  color: #fff;
  font-weight: 900;
  -webkit-text-stroke: 2px #fff;
}
.rv-word--2 {
  font-family: "Dancing Script", cursive;
  font-size: clamp(4.5rem, 7vw, 6rem);
  font-weight: 700;
  color: #fff;
}
.rv-word--3 {
  font-family: "Pacifico", cursive;
  font-size: clamp(3.5rem, 6vw, 5rem);
}
.rv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 100px;
  transition:
    background 0.2s,
    transform 0.2s;
  text-shadow: none;
}
.rv-cta:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
}
.rv-word--4 {
  font-family: "Lobster Two", cursive;
  font-size: clamp(5.5rem, 9vw, 8rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
}

/* ── CONTACT ── */
#contact {
  background: var(--butter);
  padding: 120px 80px;
  border-top: 2px solid var(--dark);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-block {
  margin-bottom: 40px;
}
.contact-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.contact-text {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.9;
}
.contact-text a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--orange);
}
.contact-text a:hover {
  color: var(--orange);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.hours-row span:last-child {
  font-weight: 600;
}
.map-embed {
  width: 100%;
  min-height: 480px;
  border: 2px solid var(--dark);
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  border: 0;
}
.cta-big {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-big .btn-orange,
.cta-big .btn-dark {
  padding: 16px 24px;
  font-size: 1.2rem;
}
.btn-orange {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--dark);
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-orange:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
}
.btn-dark {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 100px;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-dark:hover {
  opacity: 0.8;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 80px 40px;
  border-top: 4px solid var(--orange);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  height: 80px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}
.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a,
.footer-contact span {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--orange); }
.footer-contact i { font-size: 15px; flex-shrink: 0; color: var(--orange); }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col-title {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-copy {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--sans);
  font-size: 0.72rem;
  opacity: 0.55;
  text-align: center;
}
.credit-bar {
  background: #0d0704;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  font-size: 0.72rem;
  text-align: center;
  padding: 12px 24px;
  letter-spacing: 0.04em;
}
.credit-bar strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.credit-bar a {
  color: inherit;
  text-decoration: none;
}
.credit-bar a:hover strong {
  color: var(--orange);
}
/* Checker accent in footer */
.footer-checker {
  height: 6px;
  margin-bottom: 32px;
  background-image:
    linear-gradient(45deg, var(--blue) 25%, transparent 25%),
    linear-gradient(-45deg, var(--blue) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--blue) 75%),
    linear-gradient(-45deg, transparent 75%, var(--blue) 75%);
  background-size: 12px 12px;
  background-position:
    0 0,
    0 6px,
    6px -6px,
    -6px 0px;
  opacity: 0.35;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── TWEAKS ── */
#tweaks-panel {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--white);
  border: 2px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
  padding: 24px;
  width: 280px;
  font-family: var(--sans);
}
#tweaks-panel.open {
  display: block;
}
.tweaks-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.tweak-group {
  margin-bottom: 18px;
}
.tweak-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  display: block;
}
.tweak-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tweak-btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border: 2px solid var(--dark);
  background: none;
  cursor: pointer;
  color: var(--dark);
  border-radius: 100px;
  transition: background 0.15s;
}
.tweak-btn.active {
  background: var(--dark);
  color: var(--white);
}

/* Color swatch buttons */
.swatch-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: transform 0.15s;
  position: relative;
}
.swatch-btn.active::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}
.swatch-btn:hover {
  transform: scale(1.1);
}

.hero-shape-divider {
  display: none;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-shape-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}
.hero-shape-divider .shape-fill {
  fill: var(--orange);
}

@media (max-width: 1180px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .nav-btn-phone {
    display: flex;
  }
  .nav-logo {
    transform: translateX(-50%) translateY(8px);
  }
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .hero-right {
    display: block;
    order: 2;
    grid-row: 2;
    position: relative;
  }
  .hero-shape-divider {
    display: block;
    bottom: auto;
    top: -1px;
  }
  .hero-shape-divider svg {
    transform: scaleY(-1);
  }
  .hero-left {
    border-radius: 0;
    padding: 48px 24px 52px;
    order: 1;
    grid-row: 1;
  }
  .hero-food-img {
    height: 300px;
  }
  /* Typography */
  .hero-title { font-size: clamp(2.8rem, 9vw, 4rem); }
  .hero-sub { font-size: 1.1rem; margin-bottom: 32px; }
  .section-title { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .section-body { font-size: 1.2rem; }
  .marquee-bar {
    grid-column: 1;
    grid-row: 3;
  }
  #social-proof,
  #about,
  #menu,
  #gallery,
  #contact {
    padding: 80px 24px;
  }
  #reviews {
    padding: 60px 24px;
    min-height: 80vh;
  }
  .fslider-card {
    width: 85vw;
  }
  #food-slider {
    padding: 60px 0 48px;
  }
  .rv-float--1 {
    width: 130px;
    top: 2%;
  }
  .rv-float--2 {
    width: 140px;
  }
  .rv-float--3 {
    width: 120px;
    left: 0%;
  }
  .rv-float--4 {
    width: 135px;
    top: 2%;
  }
  .rv-float--5 {
    width: 130px;
  }
  #featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .featured-eyebrow {
    grid-column: 1;
    grid-row: 1;
  }
  .featured-img-side {
    grid-row: 2;
    min-height: 320px;
  }
  .featured-dish-img {
    width: 220px;
    height: 220px;
  }
  .featured-text-side {
    grid-row: 3;
    padding: 52px 24px;
  }
  .featured-eyebrow--bottom {
    display: none;
  }
  .sp-grid {
    grid-template-columns: 1fr;
  }
  .sp-float--1 {
    width: 110px;
  }
  .sp-float--2 {
    width: 95px;
  }
  .sp-float--3 {
    width: 130px;
  }
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item:nth-child(2) {
    grid-column: span 2;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  /* Hero szöveges blokk – középre mobilon */
  .hero-left { text-align: center; align-items: center; }
  .hero-sub { max-width: none; }
  .hero-buttons { justify-content: center; }
  /* Április kedvence – szövegoldal középre */
  .featured-text-side { text-align: center; align-items: center; }
  .featured-counter { align-items: center; }
  .featured-cta { align-self: center; }
  /* Matróz hangulata – fejléc középre */
  .gallery-header { flex-direction: column; align-items: center; text-align: center; }
  /* Friss szó – vékony */
  .rv-word--4 { font-weight: 400; }
  /* Footer – balra, kisebb padding */
  footer { padding: 48px 24px 32px; }
  .footer-copy { text-align: left; }
  #tweaks-panel {
    width: calc(100vw - 32px);
    right: 16px;
  }
}

/* ── SCROLL-TO-TOP GOMB ── */
.scroll-top-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 8900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.2s, opacity 0.3s;
  opacity: 0; pointer-events: none;
  font-size: 1.2rem;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.1); }
@media (max-width: 600px) {
  .scroll-top-btn { bottom: 16px; right: 16px; }
  /* Credit-bar: alsó padding a fixált gombok (scroll-up, süti) miatt */
  .credit-bar { padding: 10px 24px 64px; }
  /* Off-canvas menü betűméret */
  .nav-drawer-links li a { font-size: clamp(1.5rem, 6vw, 2rem); padding: 12px 0; }
  /* Typography – phones */
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-left { padding: 40px 20px 44px; }
  .section-title { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .section-body { font-size: 1.05rem; }
  /* Rotating-words section */
  .rv-center { padding: 40px 24px; }
  .rv-word { text-shadow: 0 1px 4px rgba(0,0,0,0.2); }
  .rv-word--1 { font-size: clamp(3.5rem, 13vw, 6rem); }
  .rv-word--2 { font-size: clamp(2.5rem, 9vw, 4rem); }
  .rv-word--3 { font-size: clamp(2rem, 7.5vw, 3.5rem); }
  .rv-word--4 { font-size: clamp(3rem, 11vw, 5rem); font-weight: 400; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-left { padding: 36px 18px 40px; }
  .section-title { font-size: 1.4rem; }
  .section-body { font-size: 1rem; }
  /* Nav – kisebb gombok, hogy ne lógjon bele a logóba */
  nav { padding: 0 12px; }
  .nav-actions { gap: 6px; }
  .nav-btn-map,
  .nav-btn-phone { width: 34px; height: 34px; }
  /* Scroll-to-top gomb */
  .scroll-top-btn { width: 36px; height: 36px; bottom: 12px; right: 12px; font-size: 1rem; }
  /* Off-canvas menü betűméret – legkisebb telefonok */
  .nav-drawer-links li a { font-size: 1.3rem; padding: 10px 0; }
}

.noupcases {
    text-transform: none;
}
#honap {
    font-family:var(--serif);
    font-style:normal;
}

