/* ==============================================================
   FLAVOR HAVEN — Restaurant Demo | Complete Stylesheet
   ============================================================== */

/* --------- RESET & BASE --------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  cursor: default;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* --------- CSS VARIABLES --------- */
:root {
  --red: #e63946;
  --red-dark: #c62828;
  --orange: #f4845f;
  --gold: #e8a838;
  --green: #2d6a4f;
  --green-light: #52b788;
  --cream: #fef9ef;
  --cream-dark: #f5efe0;
  --dark: #1a1a2e;
  --dark-800: #16213e;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow: 0 8px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .4s cubic-bezier(.4,0,.2,1);
  --bounce: cubic-bezier(.68,-.55,.265,1.55);
}

/* --------- UTILITY CLASSES --------- */
.script-font { font-family: 'Dancing Script', cursive; }

.text-gradient {
  background: linear-gradient(135deg, var(--red), var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent { color: var(--red); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 550px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 56px; }

/* --------- BUTTONS --------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-101%);
  transition: transform .4s;
  z-index: -1;
}

.btn:hover::before { transform: translateX(0); }

.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230,57,70,.35);
}

.btn--glass {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
}
.btn--glass:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-3px);
}

.btn--sm { padding: 10px 22px; font-size: .85rem; }
.btn--lg { padding: 16px 38px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ==============================================================
   LOADER
   ============================================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity .6s, visibility .6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner { text-align: center; }

.loader__plate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__fork {
  font-size: 1.8rem;
  color: var(--gold);
  animation: pulse 1.2s ease infinite;
}

.loader__text {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  letter-spacing: 1px;
}

.loader__dots::after {
  content: '';
  animation: dots 1.5s steps(3) infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
@keyframes dots {
  0% { content: ''; }
  33% { content: '.'; }
  66% { content: '..'; }
  100% { content: '...'; }
}


/* ==============================================================
   HEADER
   ============================================================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon { font-size: 1.6rem; }
.logo__text { display: flex; flex-direction: column; }
.logo__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  transition: var(--transition);
}

.header.scrolled .logo__name { color: var(--dark); }

.logo__tag {
  font-family: 'Dancing Script', cursive;
  font-size: .75rem;
  color: var(--gold);
}

/* Nav */
.nav__list { display: flex; gap: 28px; }

.nav__link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.header.scrolled .nav__link { color: var(--dark); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .3s, left .3s;
}

.nav__link:hover::after,
.nav__link.active::after { width: 100%; left: 0; }

.header__right { display: flex; align-items: center; gap: 14px; }

.header__right .btn--primary {
  background: var(--red);
  border-color: var(--red);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 28px; height: 2.5px;
  background: #fff;
  border-radius: 4px;
  transition: var(--transition);
}

.header.scrolled .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ==============================================================
   HERO
   ============================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__parallax-bg {
  position: absolute;
  inset: -60px;
  background:
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&h=1000&fit=crop')
    center / cover no-repeat;
  transition: transform .1s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,46,.92) 0%, rgba(26,26,46,.7) 50%, rgba(230,57,70,.3) 100%);
}

/* Floating food images */
.hero__floating-foods {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.float-food {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  opacity: .2;
}

.float-food--1 {
  top: 15%; right: 8%;
  width: 180px; height: 180px;
  object-fit: cover;
  animation: floatFood1 8s ease-in-out infinite;
}

.float-food--2 {
  bottom: 20%; right: 15%;
  width: 140px; height: 140px;
  object-fit: cover;
  animation: floatFood2 10s ease-in-out infinite;
}

.float-food--3 {
  top: 40%; right: 30%;
  width: 120px; height: 120px;
  object-fit: cover;
  animation: floatFood3 12s ease-in-out infinite;
}

.float-food--4 {
  bottom: 10%; right: 40%;
  width: 100px; height: 100px;
  object-fit: cover;
  animation: floatFood4 9s ease-in-out infinite;
}

@keyframes floatFood1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-20px, 30px) rotate(5deg); }
  50% { transform: translate(10px, -20px) rotate(-3deg); }
  75% { transform: translate(-15px, -10px) rotate(4deg); }
}

@keyframes floatFood2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(25px, -25px) rotate(-5deg); }
  66% { transform: translate(-20px, 15px) rotate(3deg); }
}

@keyframes floatFood3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}

@keyframes floatFood4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -20px) rotate(8deg); }
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 140px 0 100px;
}

.hero__badge {
  margin-bottom: 16px;
}

.hero__badge .script-font {
  font-size: 1.4rem;
  color: var(--gold);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

/* Hero Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.hero-stat { text-align: center; }

.hero-stat__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat__label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s .5s both;
}

.hero__scroll-indicator span {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-mouse__wheel {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ==============================================================
   MARQUEE
   ============================================================== */
.marquee {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

.marquee__track span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==============================================================
   ABOUT
   ============================================================== */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About Images */
.about__images { position: relative; }

.about__img--main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__img--main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 6s;
}

.about__img--main:hover img { transform: scale(1.05); }

.about__img--float {
  position: absolute;
  bottom: -30px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
  animation: floatBounce 4s ease-in-out infinite;
}

.about__img--float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px; height: 120px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(230,57,70,.4);
  animation: pulseGlow 2s ease-in-out infinite;
}

.about__exp-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.about__exp-text {
  font-size: .65rem;
  color: rgba(255,255,255,.85);
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .5px;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(230,57,70,.4); }
  50% { box-shadow: 0 10px 50px rgba(230,57,70,.6); }
}

/* About Content */
.about__lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 16px;
}

.about__text {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about__feature:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.about__feature-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about__feature h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}

.about__feature p {
  font-size: .82rem;
  color: var(--gray-600);
}

/* ==============================================================
   MENU
   ============================================================== */
.menu {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.menu__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(230,57,70,.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232,168,56,.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Menu Tabs */
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu__tab {
  padding: 10px 28px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.menu__tab:hover { border-color: var(--red); color: var(--red); }

.menu__tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.05);
}

/* Menu Grid */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* Menu Card */
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.menu-card.hidden {
  display: none;
}

.menu-card.filter-animate {
  animation: filterIn .5s var(--bounce) both;
}

@keyframes filterIn {
  from { opacity: 0; transform: scale(.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.menu-card__img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.menu-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.menu-card:hover .menu-card__img img { transform: scale(1.1); }

.menu-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 1;
}

.menu-card__badge--chef { background: var(--gold); color: var(--dark); }
.menu-card__badge--new { background: var(--green); }

.menu-card__price {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--dark);
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  z-index: 1;
}

.menu-card__body { padding: 20px 24px 24px; }

.menu-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stars { display: flex; gap: 2px; }
.stars i { color: var(--gold); font-size: .8rem; }

.menu-card__rating span { font-size: .8rem; color: var(--gray-600); font-weight: 500; }

.menu-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.menu-card__body p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ==============================================================
   FEATURED / CAROUSEL
   ============================================================== */
.featured {
  position: relative;
  padding: 120px 0;
  background: var(--dark);
  overflow: hidden;
}

.featured__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(230,57,70,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(232,168,56,.1) 0%, transparent 60%);
}

.featured .container { position: relative; }

/* Carousel */
.carousel { position: relative; overflow: hidden; border-radius: var(--radius-lg); }

.carousel__track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.carousel__slide {
  min-width: 100%;
  padding: 0 12px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.featured-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.featured-card__info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card__tag {
  display: inline-block;
  background: rgba(230,57,70,.2);
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.featured-card__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}

.featured-card__info p {
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  line-height: 1.7;
}

.featured-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.featured-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

/* Carousel Controls */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel__btn {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.carousel__btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.carousel__dots {
  display: flex;
  gap: 10px;
}

.carousel__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: var(--transition);
}

.carousel__dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ==============================================================
   CHEFS
   ============================================================== */
.chefs {
  padding: 120px 0;
  background: var(--cream);
}

.chefs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.chef-card {
  text-align: center;
  transition: var(--transition);
}

.chef-card:hover { transform: translateY(-10px); }

.chef-card__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.chef-card__img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform .6s;
}

.chef-card:hover .chef-card__img img { transform: scale(1.08); }

.chef-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,26,46,.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity .4s;
}

.chef-card:hover .chef-card__overlay { opacity: 1; }

.chef-card__social {
  display: flex;
  gap: 12px;
}

.chef-card__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.chef-card__social a:hover {
  background: var(--red);
  transform: translateY(-3px) scale(1.1);
}

.chef-card__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.chef-card__info > span {
  font-size: .85rem;
  color: var(--red);
  font-weight: 500;
}

.chef-card__specialty {
  font-size: .8rem;
  color: var(--gray-600);
  margin-top: 6px;
}

.chef-card__specialty i {
  color: var(--gold);
  margin-right: 4px;
}

/* ==============================================================
   GALLERY
   ============================================================== */
.gallery {
  padding: 120px 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall { grid-row: span 2; }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s, filter .7s;
}

.gallery__item:hover img {
  transform: scale(1.1);
  filter: brightness(.7);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .4s;
}

.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__item-overlay i {
  width: 50px; height: 50px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transform: scale(0);
  transition: transform .4s var(--bounce);
}

.gallery__item:hover .gallery__item-overlay i { transform: scale(1); }

.gallery__item-overlay span {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform .4s .1s;
}

.gallery__item:hover .gallery__item-overlay span { transform: translateY(0); }

/* ==============================================================
   TESTIMONIALS
   ============================================================== */
.testimonials {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials__bg-pattern {
  position: absolute;
  top: -50px; right: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,57,70,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card__quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: rgba(230,57,70,.1);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__stars i { color: var(--gold); font-size: .9rem; }

.testimonial-card > p {
  font-size: .92rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.testimonial-card__author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cream);
}

.testimonial-card__author h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-card__author span {
  font-size: .8rem;
  color: var(--gray-600);
}

/* ==============================================================
   CONTACT
   ============================================================== */
.contact {
  padding: 120px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact__desc {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact__detail:hover {
  background: var(--cream);
  transform: translateX(8px);
}

.contact__detail-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__detail h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact__detail p { font-size: .85rem; color: var(--gray-600); }

/* Map Placeholder */
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
}

.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--cream-dark), var(--gray-200));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius);
  border: 2px dashed var(--gray-400);
}

.map-placeholder i { font-size: 2rem; color: var(--red); }
.map-placeholder p { font-weight: 600; color: var(--dark); }
.map-placeholder span { font-size: .8rem; color: var(--gray-600); }

/* Contact Form */
.contact__form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact__form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group label i { color: var(--red); margin-right: 6px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__form-card input,
.contact__form-card select,
.contact__form-card textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: .9rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-100);
  transition: var(--transition);
  outline: none;
  color: var(--dark);
}

.contact__form-card input:focus,
.contact__form-card select:focus,
.contact__form-card textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230,57,70,.1);
  background: var(--white);
}

.contact__form-card textarea { resize: vertical; }

.contact__form-card select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* ==============================================================
   FOOTER
   ============================================================== */
.footer {
  background: var(--dark);
}

.footer__top { padding: 80px 0 50px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  gap: 40px;
}

.footer__about {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer__social { display: flex; gap: 10px; margin-top: 20px; }

.footer__social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-3px) rotate(5deg);
}

.footer__col h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--red);
}

.footer__col ul li { margin-bottom: 10px; }

.footer__col ul li a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: var(--transition);
  display: inline-block;
}

.footer__col ul li a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

/* Opening Hours */
.footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__hours-note {
  color: var(--gold) !important;
  font-weight: 600;
}

.footer__hours-note span { color: var(--gold) !important; }

/* Newsletter */
.footer__col > p {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  margin-bottom: 16px;
}

.footer__newsletter {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.footer__newsletter input {
  flex: 1;
  padding: 12px 16px;
  font-family: inherit;
  font-size: .85rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  background: rgba(255,255,255,.06);
  color: #fff;
  outline: none;
  transition: var(--transition);
}

.footer__newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer__newsletter input:focus { border-color: var(--red); }

.footer__newsletter button {
  width: 46px; height: 46px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.footer__newsletter button:hover {
  background: var(--gold);
  transform: scale(1.1);
}

.footer__awards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__awards span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.footer__awards i { color: var(--gold); margin-right: 6px; }

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: color .3s;
}

.footer__bottom-links a:hover { color: var(--gold); }

/* ==============================================================
   BACK TO TOP
   ============================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.8);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 6px 20px rgba(230,57,70,.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px) scale(1.1);
}

/* ==============================================================
   RESPONSIVE
   ============================================================== */
@media (max-width: 1100px) {
  .chefs__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero__title { font-size: 2.6rem; }
  .section-title { font-size: 2rem; }

  /* Nav */
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: var(--dark);
    padding: 100px 30px 30px;
    transition: right .4s;
    z-index: 1000;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link {
    display: block;
    padding: 14px 0;
    color: rgba(255,255,255,.85) !important;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .hamburger { display: flex; }
  .header__right .btn { display: none; }

  /* Grids */
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .featured-card { grid-template-columns: 1fr; }
  .featured-card img { min-height: 220px; }

  .menu__grid { grid-template-columns: 1fr; }
  .chefs__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Hero Stats */
  .hero__stats { gap: 20px; padding: 20px; flex-wrap: wrap; justify-content: center; }

  /* Floating food */
  .hero__floating-foods { display: none; }

  .footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .chefs__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--tall { grid-row: span 1; }
  .about__img--float { display: none; }
}
