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

:root {
  --orange: #e8531a;
  --orange-light: #ff6b35;
  --cream: #fdf6ec;
  --dark: #1a1208;
  --dark-2: #2e2010;
  --muted: #6b5b45;
  --border: rgba(232, 83, 26, 0.15);
  --card-bg: #fffaf4;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(26, 18, 8, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-64px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-logo span {
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a:hover {
  background: var(--card-bg);
  color: var(--dark);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  transition:
    transform 0.2s ease,
    background 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: scale(1.04) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 1.25rem;
}

/* HERO */
.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem 4rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 83, 26, 0.1);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(232, 83, 26, 0.2);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark);
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  animation: lineGrow 1s 1.2s ease forwards;
}

@keyframes lineGrow {
  to {
    width: 100%;
  }
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 44ch;
  animation: fadeUp 0.8s 0.6s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.8s ease both;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(26, 18, 8, 0.2);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: var(--card-bg);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s 1s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s 0.4s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-img-wrap {
  width: 380px;
  height: 480px;
  border-radius: 40% 60% 60% 40% / 50% 50% 60% 40%;
  overflow: hidden;
  position: relative;
  animation: morphBlob 8s ease-in-out infinite;
  box-shadow: 0 32px 80px rgba(232, 83, 26, 0.2);
}

@keyframes morphBlob {
  0%,
  100% {
    border-radius: 40% 60% 60% 40% / 50% 50% 60% 40%;
  }
  33% {
    border-radius: 60% 40% 50% 60% / 40% 60% 50% 60%;
  }
  66% {
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 50%;
  }
}

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

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-float-card.left {
  bottom: 80px;
  left: -30px;
  animation-delay: 0.5s;
}
.hero-float-card.top {
  top: 40px;
  right: -20px;
  animation-delay: 1s;
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.float-icon.orange {
  background: rgba(232, 83, 26, 0.12);
}
.float-icon.green {
  background: rgba(34, 197, 94, 0.12);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.section-header p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* CATEGORIES */
.categories-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.categories-track-wrap {
  position: relative;
  overflow: hidden;
}

.categories-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card {
  min-width: 140px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cat-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(232, 83, 26, 0.12);
}

.cat-card.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(232, 83, 26, 0.3);
}

.cat-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-img,
.cat-card.active .cat-img {
  transform: scale(1.1);
}

.cat-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
}

.cat-card.active .cat-name {
  color: var(--white);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.ctrl-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: scale(1.08);
}
.ctrl-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--dark);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  font-family: "Playfair Display", serif;
  font-size: 30rem;
  color: rgba(255, 255, 255, 0.03);
  top: -4rem;
  left: -2rem;
  line-height: 1;
  pointer-events: none;
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-section .section-label {
  color: var(--orange-light);
}
.testimonials-section .section-header h2 {
  color: var(--white);
}

.testimonial-slide {
  display: none;
  animation: fadeSlide 0.5s ease forwards;
}
.testimonial-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
}

.testimonial-img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 0 auto 2rem;
  display: block;
  border: 3px solid rgba(232, 83, 26, 0.5);
}

.testimonial-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--orange-light);
  font-weight: 500;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* RESERVE */
.reserve-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.reserve-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 340px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.reserve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 18, 8, 0.85) 0%,
    transparent 60%
  );
  transition: opacity 0.3s ease;
}

.reserve-card:hover::before {
  opacity: 0.95;
}

.reserve-card:hover {
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.reserve-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.reserve-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.reserve-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.reserve-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--dark);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.875rem;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reserve-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateX(4px);
}

/* MENU SECTION */
.menu-section {
  padding: 6rem 2rem;
  background: var(--dark-2);
}
.menu-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.menu-section .section-header h2 {
  color: var(--white);
}
.menu-section .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 83, 26, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.menu-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange-light);
  margin-bottom: 0.4rem;
}

.menu-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.menu-card-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-light);
  font-family: "Playfair Display", serif;
}

.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 1.1rem;
}

.add-btn:hover {
  background: var(--orange-light);
  transform: scale(1.15) rotate(90deg);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand-name span {
  color: var(--orange);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 28ch;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

/* MOBILE NAV */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  align-items: flex-start;
}

.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 1.5rem;
}

.mobile-menu a {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--orange);
}

/* SCROLL ANIM */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem 3rem;
    gap: 2rem;
  }
  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    justify-content: center;
  }
  .hero-img-wrap {
    width: 280px;
    height: 340px;
  }
  .hero-float-card {
    display: none;
  }

  .reserve-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-img {
    width: 100%;
    max-width: 250px;
    height: 160px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.5rem;
  }

  .testimonial-img {
    max-width: 200px;
    height: 130px;
  }
}
