/* ==========================================================================
   WillFredi Burger — Premium Stone-Age Restaurant Theme
   Mobile-first · Bootstrap 5 companion styles
   ========================================================================== */

:root {
  --orange: #e86a2a;
  --orange-dark: #c4521a;
  --yellow: #f5c842;
  --yellow-soft: #fde9a8;
  --cream: #fff8f0;
  --beige: #f0e4d4;
  --stone: #8b7d6b;
  --stone-dark: #5c5348;
  --stone-light: #c4b8a8;
  --turquoise: #4ecdc4;
  --turquoise-dark: #3aab9f;
  --green: #6b9e4e;
  --red-soft: #d45d4a;
  --text: #3d3630;
  --text-muted: #6b6358;
  --shadow: 0 8px 32px rgba(92, 83, 72, 0.12);
  --shadow-lg: 0 16px 48px rgba(92, 83, 72, 0.18);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --radius-pill: 50rem;
  --font-display: "Nunito", system-ui, sans-serif;
  --font-body: "Quicksand", system-ui, sans-serif;
  --nav-height: 4.5rem;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

body.page-loaded {
  animation: pageFadeIn 0.6s ease forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--orange-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Navbar ---- */
.navbar-tas {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(92, 83, 72, 0.08);
  padding: 0.65rem 0;
  transition: box-shadow var(--transition), padding var(--transition);
  min-height: var(--nav-height);
}

.navbar-tas.scrolled {
  box-shadow: var(--shadow);
  padding: 0.4rem 0;
}

.navbar-brand-tas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--stone-dark) !important;
}

.navbar-brand-tas .brand-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(232, 106, 42, 0.35);
}

.brand-logo-img {
  height: 2.85rem;
  width: auto;
  max-width: 3rem;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.navbar-brand-tas .brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--stone-dark);
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 399.98px) {
  .navbar-brand-tas .brand-name {
    font-size: 0.9rem;
  }

  .navbar-brand-tas {
    gap: 0.35rem;
  }
}

/* Site photos */
.site-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-wrap .site-img {
  min-height: 380px;
}

.about-image-wrap .site-img {
  min-height: 420px;
}

.card-tas .card-img-wrap .site-img {
  min-height: 100%;
  aspect-ratio: 4/3;
}

.gallery-item .site-img {
  min-height: 140px;
  height: 100%;
}

.page-hero--photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 42vh, 440px);
  padding: 5.5rem 0 4rem;
  background: var(--cream);
}

.page-hero--photo .page-hero__bg--exterior {
  background-position: center 32%;
}

.page-hero--photo .page-hero__bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.05) brightness(0.9);
  animation: pageHeroBgReveal 1.1s ease-out both;
}

@keyframes pageHeroBgReveal {
  from {
    opacity: 0.5;
    transform: scale(1.12);
  }
  to {
    opacity: 1;
    transform: scale(1.06);
  }
}

.page-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(255, 248, 240, 0.97) 0%, transparent 58%),
    radial-gradient(ellipse 80% 50% at 0% 50%, rgba(61, 54, 48, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 30%, rgba(232, 106, 42, 0.18) 0%, transparent 50%),
    linear-gradient(
      165deg,
      rgba(45, 40, 36, 0.42) 0%,
      rgba(255, 248, 240, 0.35) 45%,
      rgba(255, 248, 240, 0.82) 100%
    );
  pointer-events: none;
}

.page-hero--photo::after {
  z-index: 2;
  height: 5.5rem;
}

.page-hero--photo .container {
  position: relative;
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero--photo .page-hero__bg {
    animation: none;
    transform: scale(1.04);
  }
}

.contact-photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.contact-photo-card .site-img {
  min-height: 220px;
  max-height: 320px;
}

.map-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.map-photo-wrap .site-img {
  min-height: 240px;
  max-height: 360px;
}

.feedback-side-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.feedback-side-img .site-img {
  min-height: 280px;
}

@media (min-width: 992px) {
  .feedback-side-img {
    margin-bottom: 0;
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
  }

  .feedback-side-img .site-img {
    min-height: 480px;
  }
}

.nav-link-tas {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.nav-link-tas:hover,
.nav-link-tas.active {
  color: var(--orange) !important;
  background: rgba(232, 106, 42, 0.08);
}

.nav-link-tas.active::after {
  content: "";
  position: absolute;
  bottom: 0.15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.35rem;
  height: 0.35rem;
  background: var(--orange);
  border-radius: 50%;
}

/* Stone car in navbar */
.nav-stone-car-wrap {
  position: relative;
  width: 3.5rem;
  height: 2rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 992px) {
  .nav-stone-car-wrap {
    display: block;
  }
}

.nav-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--stone-light) 0,
    var(--stone-light) 8px,
    transparent 8px,
    transparent 14px
  );
  border-radius: 2px;
  opacity: 0.6;
}

.stone-car {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 2.75rem;
  height: auto;
  transition: left 0.15s ease-out;
  filter: drop-shadow(0 2px 4px rgba(92, 83, 72, 0.25));
  z-index: 2;
}

.stone-car.bounce {
  animation: carBounce 0.4s ease;
}

@keyframes carBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.navbar-toggler-tas {
  border: 2px solid var(--stone-light);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.55rem;
}

.navbar-toggler-tas:focus {
  box-shadow: 0 0 0 3px rgba(232, 106, 42, 0.25);
}

/* ---- Buttons ---- */
.btn-tas-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(232, 106, 42, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-tas-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-tas-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 106, 42, 0.45);
  color: #fff !important;
}

.btn-tas-primary:hover::before {
  opacity: 1;
}

.btn-tas-primary:active {
  transform: translateY(0);
}

.btn-tas-outline {
  background: transparent;
  color: var(--stone-dark) !important;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--stone-light);
  border-radius: var(--radius-pill);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-tas-outline:hover {
  border-color: var(--orange);
  background: rgba(232, 106, 42, 0.06);
  color: var(--orange) !important;
  transform: translateY(-2px);
}

.btn-tas-turquoise {
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-tas-turquoise:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

/* ---- Section utilities ---- */
.section-padding {
  padding: 4.5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--stone-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

.bg-gradient-warm {
  background: linear-gradient(160deg, var(--cream) 0%, var(--beige) 50%, var(--yellow-soft) 100%);
}

.bg-gradient-stone {
  background: linear-gradient(180deg, var(--beige) 0%, var(--stone-light) 40%, var(--beige) 100%);
}

.bg-gradient-hero {
  background: linear-gradient(145deg, var(--yellow-soft) 0%, var(--cream) 35%, var(--beige) 100%);
}

/* Fade-up scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 0.5rem) 0 4rem;
  overflow: hidden;
}

.hero-section > .container {
  width: 100%;
  transform: translateY(-2.5vh);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  color: var(--stone-dark);
  margin-bottom: 1rem;
}

.hero-headline .highlight {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 28rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Mobil: CTA butonları yan yana (masaüstü aynı kalır) */
@media (max-width: 767.98px) {
  .hero-cta {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .hero-cta .btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }

  .hero-cta .btn-lg {
    padding: 0.75rem 0.55rem;
    font-size: clamp(0.8rem, 3.4vw, 0.95rem);
    line-height: 1.2;
  }
}

.hero-image-wrap {
  position: relative;
  border-radius: 2rem 2rem 3rem 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 106, 42, 0.15) 0%,
    transparent 50%,
    rgba(78, 205, 196, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-decor--rock1 {
  top: 8%;
  right: 5%;
  width: 80px;
  opacity: 0.15;
  animation: floatRock 8s ease-in-out infinite;
}

.hero-decor--rock2 {
  bottom: 15%;
  left: 3%;
  width: 60px;
  opacity: 0.12;
  animation: floatRock 10s ease-in-out infinite reverse;
}

.hero-decor--leaf {
  top: 40%;
  left: 8%;
  width: 40px;
  opacity: 0.2;
  animation: floatLeaf 6s ease-in-out infinite;
}

@keyframes floatRock {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes floatLeaf {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

/* Floating ingredients (subtle) */
.ingredient-float {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.35;
  animation: ingredientDrift 12s ease-in-out infinite;
  pointer-events: none;
}

.ingredient-float--1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}
.ingredient-float--2 {
  bottom: 25%;
  right: 8%;
  animation-delay: -4s;
}
.ingredient-float--3 {
  top: 55%;
  left: 5%;
  animation-delay: -8s;
}

@keyframes ingredientDrift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(8px, -10px) rotate(8deg);
  }
  66% {
    transform: translate(-6px, 6px) rotate(-5deg);
  }
}

/* ---- Image placeholders ---- */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(145deg, var(--beige) 0%, var(--stone-light) 100%);
  color: var(--stone);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b7d6b' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.img-placeholder-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.img-placeholder span {
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

.img-placeholder--burger {
  background: linear-gradient(145deg, #f5d4a8 0%, var(--orange) 30%, var(--beige) 100%);
  color: rgba(255, 255, 255, 0.9);
}

.img-placeholder--interior {
  background: linear-gradient(160deg, var(--stone-light) 0%, var(--beige) 60%, var(--turquoise) 150%);
}

.img-placeholder--exterior {
  background: linear-gradient(160deg, var(--yellow-soft) 0%, var(--orange) 80%, var(--beige) 100%);
}

/* ---- Cards ---- */
.card-tas {
  background: #fff;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: auto;
}

.card-tas:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-tas .card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-tas .card-img-wrap .img-placeholder,
.card-tas .card-img-wrap img,
.card-tas .card-img-wrap .site-img {
  transition: transform 0.5s ease;
}

.card-tas:hover .card-img-wrap .img-placeholder,
.card-tas:hover .card-img-wrap img,
.card-tas:hover .card-img-wrap .site-img {
  transform: scale(1.06);
}

.card-tas .card-body {
  padding: 1.35rem;
}

.card-tas .card-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--stone-dark);
  margin-bottom: 0.35rem;
}

.card-tas .card-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--orange);
}

.card-tas .card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Why choose us icons */
.benefit-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--yellow-soft), var(--beige));
  border-radius: 42% 58% 55% 45% / 48% 52% 48% 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

/* ---- Reviews carousel ---- */
.reviews-section {
  position: relative;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin: 0 0.5rem;
  min-height: 220px;
}

.review-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.review-author {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--stone-dark);
}

.review-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--stone-light);
  border: none;
  opacity: 0.6;
}

.review-carousel .carousel-indicators .active {
  background-color: var(--orange);
  opacity: 1;
}

/* ---- Gallery masonry feel ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 140px;
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item .img-placeholder,
.gallery-item .site-img {
  min-height: 100%;
  height: 100%;
}

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, var(--stone-dark) 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 45% 55% 50% 50%;
}

.cta-banner h2 {
  color: #fff;
  position: relative;
}

.cta-banner p {
  opacity: 0.92;
  position: relative;
}

/* ---- Footer ---- */
.footer-tas {
  background: var(--stone-dark);
  color: rgba(255, 248, 240, 0.85);
  padding: 4rem 0 2rem;
}

.footer-tas h5 {
  color: var(--yellow-soft);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.footer-tas a {
  color: rgba(255, 248, 240, 0.75);
  transition: color var(--transition);
}

.footer-tas a:hover {
  color: var(--yellow);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
  color: #fff !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ---- Page headers (inner pages) ---- */
.page-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(160deg, var(--yellow-soft) 0%, var(--cream) 60%, var(--beige) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to top, var(--cream), transparent);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #2e2823;
}

.page-hero .section-label {
  font-weight: 800;
  color: #9a3d12;
}

.page-hero .section-subtitle {
  font-weight: 600;
  color: #3a332c;
}

.page-hero--photo h1,
.page-hero--photo .section-subtitle {
  color: #2a241f;
}

.page-hero--photo .section-label {
  color: #8f3815;
}

/* ---- Menu page ---- */
.menu-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-filters::-webkit-scrollbar {
  display: none;
}

.menu-filter-btn {
  flex: 0 0 auto;
  scroll-snap-align: start;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  border: 2px solid var(--stone-light);
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
}

.menu-filter-btn:hover,
.menu-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.menu-card {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-card.hidden {
  opacity: 0;
  transform: scale(0.95);
  position: absolute;
  pointer-events: none;
  visibility: hidden;
}

.menu-category-title {
  font-size: 1.5rem;
  color: var(--stone-dark);
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
}

.menu-product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  z-index: 2;
}

.menu-product-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(61, 54, 48, 0.15);
}

.menu-product-badge--campaign {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
}

.menu-product-badge--featured {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--stone-dark);
}

.menu-product-badge--out {
  background: rgba(92, 83, 72, 0.92);
  color: #fff;
}

.menu-product-meta {
  margin-bottom: 0.75rem;
}

.menu-product-meta__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.25rem;
}

.menu-product-meta__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-product-meta__list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.15rem 0;
  border-bottom: 1px dashed rgba(139, 125, 107, 0.2);
}

.menu-product-meta__list li:last-child {
  border-bottom: 0;
}

.menu-product-meta__delta {
  color: var(--stone-dark);
  font-weight: 700;
  white-space: nowrap;
}

.menu-product-meta__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.menu-product-price {
  margin-top: auto;
  padding-top: 0.35rem;
}

.menu-product-price--out {
  color: var(--text-muted) !important;
}

.menu-product-price--out s {
  opacity: 0.65;
}

/* ---- Contact ---- */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: auto;
}

.contact-info-card .info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-card .info-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, var(--yellow-soft), var(--beige));
  border-radius: 40% 60% 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(160deg, var(--stone-light), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.form-tas .form-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--stone-dark);
}

.form-tas .form-control,
.form-tas .form-select {
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-tas .form-control:focus,
.form-tas .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 106, 42, 0.15);
}

/* Rating stars input */
.rating-input {
  display: flex;
  gap: 0.35rem;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating-input input {
  display: none;
}

.rating-input label {
  font-size: 2rem;
  color: var(--stone-light);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
  color: var(--yellow);
}

.rating-input input:checked + label {
  transform: scale(1.1);
}

/* ---- Feedback admin panel ---- */
.admin-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(61, 54, 48, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.admin-panel.open {
  display: flex;
}

.admin-panel-inner {
  background: #fff;
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.admin-panel-header {
  padding: 1.25rem 1.5rem;
  background: var(--stone-dark);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-panel-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.admin-feedback-item {
  border: 1px solid var(--beige);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
}

.admin-feedback-item .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.admin-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

.toast-tas {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 8888;
  background: var(--green);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.toast-tas.show {
  transform: translateY(0);
}

/* Parallax layers */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* About split */
.about-image-wrap {
  border-radius: 2rem 1rem 2rem 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Stone texture divider */
.stone-divider {
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24'%3E%3Cpath fill='%23c4b8a8' d='M0 12 Q30 0 60 12 T120 12 T180 12 T240 12 T300 12 T360 12 T420 12 T480 12 T540 12 T600 12 T660 12 T720 12 T780 12 T840 12 T900 12 T960 12 T1020 12 T1080 12 T1140 12 T1200 12 V24 H0Z'/%3E%3C/svg%3E") repeat-x;
  background-size: auto 24px;
  opacity: 0.5;
  margin: 0;
}
