/* ============================================
   GUCHI'S RESTAURANT — Complete Stylesheet
   Converted from Tailwind CSS v4 + React
   ============================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Fonts */
  --font-display: "Playfair Display", serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", sans-serif;

  /* Gold Palette */
  --color-gold-50: #fdf8ed;
  --color-gold-100: #f9edcf;
  --color-gold-200: #f3d99b;
  --color-gold-300: #ecc267;
  --color-gold-400: #e6ab3c;
  --color-gold-500: #d4912a;
  --color-gold-600: #b87220;
  --color-gold-700: #96541d;
  --color-gold-800: #7a431f;
  --color-gold-900: #65381e;

  /* Charcoal Palette */
  --color-charcoal-50: #f6f6f6;
  --color-charcoal-100: #e7e7e7;
  --color-charcoal-200: #d1d1d1;
  --color-charcoal-300: #b0b0b0;
  --color-charcoal-400: #888888;
  --color-charcoal-500: #6d6d6d;
  --color-charcoal-600: #5d5d5d;
  --color-charcoal-700: #4f4f4f;
  --color-charcoal-800: #454545;
  --color-charcoal-900: #1a1a1a;
  --color-charcoal-950: #0d0d0d;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-charcoal-950);
  color: var(--color-charcoal-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background-color: rgba(230, 171, 60, 0.3);
  color: #fff;
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-charcoal-900);
}
::-webkit-scrollbar-thumb {
  background: var(--color-charcoal-700);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-charcoal-500);
}

/* ---- Keyframe Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(-25%) translateX(-50%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50%      { transform: translateY(0) translateX(-50%); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fade-in    { animation: fadeIn 1s ease-out forwards; }
.animate-slide-down { animation: slideDown 0.6s ease-out forwards; }
.animate-scale-in   { animation: scaleIn 0.6s ease-out forwards; }
.animate-bounce     { animation: bounce 1s infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }

/* ---- Utility Classes ---- */
.gold-gradient {
  background: linear-gradient(135deg, #e6ab3c, #d4912a, #ecc267);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e6ab3c, transparent);
}
.gold-border {
  border-image: linear-gradient(135deg, #e6ab3c, #d4912a) 1;
}

/* ---- Layout Utilities ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-lg {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  padding: 1.25rem 0;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  padding: 0.75rem 0;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-gold-400);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-logo:hover {
  color: var(--color-gold-300);
}
.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal-300);
  transition: color 0.3s;
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold-400);
  transition: width 0.3s;
}
.navbar-links a:hover {
  color: var(--color-gold-400);
}
.navbar-links a:hover::after {
  width: 100%;
}
.navbar-cta {
  display: none;
  align-items: center;
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--color-gold-400);
  color: var(--color-gold-400);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.navbar-cta:hover {
  background: var(--color-gold-400);
  color: var(--color-charcoal-950);
}
.mobile-toggle {
  display: flex;
  color: var(--color-charcoal-200);
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle:hover {
  color: var(--color-gold-400);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: var(--color-charcoal-200);
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu .close-btn:hover {
  color: var(--color-gold-400);
}
.mobile-menu .mobile-logo {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-gold-400);
  margin-bottom: 1rem;
}
.mobile-menu a {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal-200);
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--color-gold-400);
}
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--color-gold-400);
  color: var(--color-gold-400);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.mobile-menu .mobile-cta:hover {
  background: var(--color-gold-400);
  color: var(--color-charcoal-950);
}

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
  .navbar-cta   { display: inline-flex; }
  .mobile-toggle { display: none; }
}

/* ==============================
   HERO SECTION
   ============================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.7), rgba(13,13,13,0.5), rgba(13,13,13,0.9));
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.4), transparent);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero-subtitle {
  color: var(--color-gold-400);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .line-white { display: block; color: #fff; }
.hero-title .line-gold { display: block; }
.hero-desc-wrap {
  margin-bottom: 0;
}
.hero-line {
  width: 8rem;
  margin: 0 auto 1.5rem;
}
.hero-desc {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-charcoal-200);
  font-style: italic;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.8;
}
.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-btn-primary {
  padding: 1rem 2.5rem;
  background: var(--color-gold-400);
  color: var(--color-charcoal-950);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(230,171,60,0.2);
  display: inline-block;
}
.hero-btn-primary:hover {
  background: var(--color-gold-300);
}
.hero-btn-secondary {
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}
.hero-btn-secondary:hover {
  border-color: var(--color-gold-400);
  color: var(--color-gold-400);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(230,171,60,0.7);
  transition: color 0.3s;
  animation: bounce 1s infinite;
}
.hero-scroll:hover {
  color: var(--color-gold-400);
}
.hero-corner-tl {
  position: absolute;
  top: 6rem;
  left: 2rem;
  width: 5rem;
  height: 5rem;
  border-top: 1px solid rgba(230,171,60,0.2);
  border-left: 1px solid rgba(230,171,60,0.2);
  display: none;
}
.hero-corner-br {
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  border-bottom: 1px solid rgba(230,171,60,0.2);
  border-right: 1px solid rgba(230,171,60,0.2);
  display: none;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3.75rem; }
  .hero-buttons { flex-direction: row; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
  .hero-subtitle { font-size: 1.25rem; }
  .hero-desc { font-size: 1.5rem; }
  .hero-corner-tl, .hero-corner-br { display: block; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 6rem; }
}

/* ==============================
   SECTION HEADERS (shared)
   ============================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  color: var(--color-gold-400);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.section-line {
  width: 6rem;
  margin: 0 auto;
}
.section-desc {
  color: var(--color-charcoal-400);
  max-width: 36rem;
  margin: 1.5rem auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
  .section-desc  { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .section-title { font-size: 3.75rem; }
}

/* ==============================
   ABOUT SECTION
   ============================== */
.about {
  position: relative;
  padding: 6rem 0 6rem;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  background: var(--color-charcoal-950);
}
.about-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, rgba(230,171,60,0.3) 1px, transparent 0);
  background-size: 40px 40px;
}
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-image-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(230,171,60,0.2);
}
.about-frame-tl {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 4rem;
  height: 4rem;
  border-top: 2px solid var(--color-gold-400);
  border-left: 2px solid var(--color-gold-400);
}
.about-frame-br {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  width: 4rem;
  height: 4rem;
  border-bottom: 2px solid var(--color-gold-400);
  border-right: 2px solid var(--color-gold-400);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-gold-400);
  color: var(--color-charcoal-950);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
}
.about-badge-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  display: block;
}
.about-badge-text {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-gold-300);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.about-text {
  color: var(--color-charcoal-300);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.about-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.about-link-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold-400);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.about-link-menu:hover {
  color: var(--color-gold-300);
}
.about-link-menu .arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.about-link-menu:hover .arrow {
  transform: translateX(4px);
}
.about-link-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-charcoal-400);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.about-link-phone:hover {
  color: var(--color-gold-400);
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 2rem;
}
.feature-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--color-charcoal-800);
  background: rgba(26,26,26,0.3);
  transition: all 0.5s;
}
.feature-card:hover {
  border-color: rgba(230,171,60,0.3);
  background: rgba(26,26,26,0.6);
}
.feature-icon {
  color: var(--color-gold-400);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}
.feature-desc {
  color: var(--color-charcoal-400);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about-image-wrap img { height: 500px; }
  .about-badge { bottom: 2rem; right: -2rem; padding: 1.5rem; }
  .about-badge-number { font-size: 2.25rem; }
  .about-quote { font-size: 1.875rem; }
  .about-text { font-size: 1.125rem; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .about { padding: 8rem 0; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ==============================
   MENU SECTION
   ============================== */
.menu-section {
  position: relative;
  padding: 6rem 0;
}
.menu-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-charcoal-950), var(--color-charcoal-900), var(--color-charcoal-950));
}

/* Category Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}
.menu-tab {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid var(--color-charcoal-700);
  color: var(--color-charcoal-400);
  cursor: pointer;
  background: transparent;
}
.menu-tab:hover {
  border-color: rgba(230,171,60,0.5);
  color: var(--color-gold-400);
}
.menu-tab.active {
  background: var(--color-gold-400);
  color: var(--color-charcoal-950);
  border-color: var(--color-gold-400);
}

/* Menu Items Grid */
.menu-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
.menu-item {
  border-bottom: 1px solid var(--color-charcoal-800);
  padding-bottom: 1.5rem;
  transition: all 0.5s;
}
.menu-item:hover {
  border-color: rgba(230,171,60,0.3);
}
.menu-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.menu-item-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
}
.veg-indicator, .nonveg-indicator {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.veg-indicator {
  border: 1px solid #22c55e;
}
.veg-indicator span {
  width: 0.5rem;
  height: 0.5rem;
  background: #22c55e;
  border-radius: 50%;
}
.nonveg-indicator {
  border: 1px solid #ef4444;
}
.nonveg-indicator span {
  width: 0.5rem;
  height: 0.5rem;
  background: #ef4444;
  border-radius: 50%;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s;
}
.menu-item:hover .menu-item-name {
  color: var(--color-gold-300);
}
.menu-item-tag {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.125rem 0.5rem;
  background: rgba(230,171,60,0.1);
  color: var(--color-gold-400);
  border: 1px solid rgba(230,171,60,0.3);
  font-weight: 600;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold-400);
  flex-shrink: 0;
}
.menu-item-desc {
  color: var(--color-charcoal-400);
  font-size: 0.875rem;
  line-height: 1.6;
  padding-left: 1.75rem;
}
.menu-note {
  text-align: center;
  margin-top: 3.5rem;
}
.menu-note p {
  color: var(--color-charcoal-500);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.menu-note p:last-child {
  color: var(--color-charcoal-600);
  text-transform: none;
  letter-spacing: normal;
}

@media (min-width: 768px) {
  .menu-section { padding: 8rem 0; }
  .menu-grid { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
  .menu-tab { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
  .menu-item-name { font-size: 1.25rem; }
}

/* ==============================
   SPECIAL BANNER
   ============================== */
.special-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.special-banner-bg {
  position: absolute;
  inset: 0;
}
.special-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.85);
}
.special-banner-content {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.special-banner .section-label { margin-bottom: 1rem; }
.special-banner-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.special-banner-desc {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-charcoal-200);
  font-style: italic;
  max-width: 42rem;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.special-banner-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold-400);
  margin-bottom: 0.5rem;
}
.special-banner-note {
  color: var(--color-charcoal-500);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.special-banner-btn {
  display: inline-flex;
  padding: 1rem 2.5rem;
  background: var(--color-gold-400);
  color: var(--color-charcoal-950);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(230,171,60,0.2);
}
.special-banner-btn:hover {
  background: var(--color-gold-300);
}

@media (min-width: 768px) {
  .special-banner { padding: 7rem 0; }
  .special-banner-title { font-size: 3rem; }
  .special-banner-desc { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  .special-banner-title { font-size: 3.75rem; }
}

/* ==============================
   GALLERY SECTION
   ============================== */
.gallery {
  position: relative;
  padding: 6rem 0;
}
.gallery-bg {
  position: absolute;
  inset: 0;
  background: var(--color-charcoal-950);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 16rem;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.7s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8), transparent, transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s;
}
.gallery-item:hover .gallery-item-label {
  transform: translateY(0);
}
.gallery-item-label p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
}
.gallery-item-label-line {
  width: 2rem;
  height: 2px;
  background: var(--color-gold-400);
  margin-top: 0.5rem;
}
.gallery-item-border {
  position: absolute;
  inset: 0.75rem;
  border: 1px solid transparent;
  transition: border-color 0.5s;
}
.gallery-item:hover .gallery-item-border {
  border-color: rgba(230,171,60,0.3);
}

@media (min-width: 768px) {
  .gallery { padding: 8rem 0; }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item img {
    height: 100%;
  }
  .gallery-item.span-row-2 {
    grid-row: span 2;
  }
}

/* ==============================
   TESTIMONIALS SECTION
   ============================== */
.testimonials {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-charcoal-950), var(--color-charcoal-900), var(--color-charcoal-950));
}
.testimonials-quote-bg {
  position: absolute;
  color: rgba(230,171,60,0.05);
  font-size: 12rem;
  font-family: serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonials-quote-bg.top {
  top: 2rem;
  left: 1rem;
}
.testimonials-quote-bg.bottom {
  bottom: 2rem;
  right: 1rem;
  transform: rotate(180deg);
}
.testimonials-card {
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonials-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.testimonials-stars svg {
  fill: var(--color-gold-400);
  color: var(--color-gold-400);
}
.testimonials-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-charcoal-200);
  font-style: italic;
  line-height: 1.8;
  max-width: 48rem;
  margin-bottom: 2.5rem;
}
.testimonials-divider {
  width: 3rem;
  height: 1px;
  background: var(--color-gold-400);
  margin: 0 auto 1.5rem;
}
.testimonials-author {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}
.testimonials-role {
  color: var(--color-gold-400);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonials-nav-btn {
  padding: 0.5rem;
  border: 1px solid var(--color-charcoal-700);
  color: var(--color-charcoal-400);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
}
.testimonials-nav-btn:hover {
  border-color: var(--color-gold-400);
  color: var(--color-gold-400);
}
.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}
.testimonials-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-charcoal-600);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.testimonials-dot:hover {
  background: var(--color-charcoal-500);
}
.testimonials-dot.active {
  background: var(--color-gold-400);
  width: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials { padding: 8rem 0; }
  .testimonials-text { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  .testimonials-text { font-size: 1.875rem; }
}

/* ==============================
   RESERVATION SECTION
   ============================== */
.reservation {
  position: relative;
  padding: 6rem 0;
}
.reservation-bg {
  position: absolute;
  inset: 0;
  background: var(--color-charcoal-950);
}
.reservation-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, rgba(230,171,60,0.5) 1px, transparent 0);
  background-size: 40px 40px;
}
.reservation-grid {
  display: grid;
  gap: 3rem;
}

/* Info Panel */
.reservation-info { }
.reservation-hours h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-charcoal-800);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal-300);
}
.hours-row .time {
  color: var(--color-gold-400);
  font-weight: 500;
}
.reservation-features h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.feature-tag {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--color-charcoal-700);
  color: var(--color-charcoal-400);
  letter-spacing: 0.05em;
}
.reservation-callout {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(230,171,60,0.2);
  background: rgba(230,171,60,0.05);
}
.reservation-callout p:first-child {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--color-gold-300);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.reservation-callout p:last-child {
  color: var(--color-charcoal-400);
  font-size: 0.875rem;
}
.reservation-callout a {
  color: var(--color-gold-400);
  transition: text-decoration 0.3s;
}
.reservation-callout a:hover {
  text-decoration: underline;
}

/* Form */
.reservation-form { }
.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  display: block;
  color: var(--color-charcoal-400);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-group label .label-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--color-charcoal-900);
  border: 1px solid var(--color-charcoal-700);
  padding: 0.75rem 1rem;
  color: #fff;
  transition: border-color 0.3s;
  outline: none;
  font-size: 0.875rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-charcoal-600);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold-400);
}
.form-group textarea {
  resize: none;
}
.form-group select option {
  background: var(--color-charcoal-900);
  color: #fff;
}
.reservation-submit {
  width: 100%;
  padding: 1rem;
  background: var(--color-gold-400);
  color: var(--color-charcoal-950);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(230,171,60,0.2);
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
}
.reservation-submit:hover {
  background: var(--color-gold-300);
}

/* Success State */
.reservation-success {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.success-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 2px solid var(--color-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-400);
}
.success-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.success-message {
  color: var(--color-charcoal-300);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.success-detail {
  color: var(--color-charcoal-400);
  margin-bottom: 2rem;
}
.success-detail a {
  color: var(--color-gold-400);
}
.success-detail a:hover {
  text-decoration: underline;
}
.success-btn {
  padding: 0.75rem 2rem;
  border: 1px solid var(--color-gold-400);
  color: var(--color-gold-400);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}
.success-btn:hover {
  background: var(--color-gold-400);
  color: var(--color-charcoal-950);
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .reservation { padding: 8rem 0; }
  .success-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .reservation-grid { grid-template-columns: 2fr 3fr; }
}

/* ==============================
   CONTACT SECTION
   ============================== */
.contact {
  position: relative;
  padding: 6rem 0;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-charcoal-950), var(--color-charcoal-900), var(--color-charcoal-950));
}
.contact-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.contact-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--color-charcoal-800);
  background: rgba(26,26,26,0.3);
  transition: all 0.5s;
}
.contact-card:hover {
  border-color: rgba(230,171,60,0.3);
}
.contact-card-icon {
  color: var(--color-gold-400);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  transition: transform 0.3s;
}
.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
}
.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}
.contact-card-text {
  color: var(--color-charcoal-400);
  font-size: 0.875rem;
}
.contact-card a {
  transition: color 0.3s;
}
.contact-card a:hover {
  color: var(--color-gold-400);
}
.contact-map {
  position: relative;
  width: 100%;
  height: 350px;
  background: var(--color-charcoal-900);
  border: 1px solid var(--color-charcoal-800);
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-map-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(230,171,60,0.1);
  pointer-events: none;
}
.contact-map-link {
  text-align: center;
  margin-top: 1rem;
}
.contact-map-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold-400);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.contact-map-link a:hover {
  color: var(--color-gold-300);
}

@media (min-width: 640px) {
  .contact-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .contact { padding: 8rem 0; }
  .contact-map { height: 400px; }
}
@media (min-width: 1024px) {
  .contact-cards { grid-template-columns: repeat(4, 1fr); }
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  position: relative;
  background: var(--color-charcoal-950);
  border-top: 1px solid var(--color-charcoal-800);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-gold-400);
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-brand-desc {
  color: var(--color-charcoal-400);
  line-height: 1.6;
  font-size: 0.875rem;
  max-width: 20rem;
  margin-bottom: 1rem;
}
.footer-brand-address {
  color: var(--color-charcoal-500);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-section-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.footer-links a {
  color: var(--color-charcoal-400);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--color-gold-400);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-charcoal-400);
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-contact-list a:hover {
  color: var(--color-gold-400);
}
.footer-order-links {
  display: flex;
  gap: 0.75rem;
}
.footer-order-link {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-charcoal-700);
  color: var(--color-charcoal-400);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: all 0.3s;
}
.footer-order-link:hover {
  border-color: var(--color-gold-400);
  color: var(--color-gold-400);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-charcoal-500);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.footer-bottom .cuisine-tag {
  color: var(--color-charcoal-600);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; }
}

/* ==============================
   INTERSECTION OBSERVER ANIMATIONS
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ==============================
   SVG ICON STYLES
   ============================== */
.icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}
.icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
