/* ==========================================================
   THE EMBER TABLE — Restaurant Template Styles
   ========================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors — Warm bakery palette */
  --color-bg:         #0f0b08;
  --color-bg-alt:     #16120d;
  --color-bg-card:    #1e1812;
  --color-surface:    #272017;
  --color-text:       #f5f0e8;
  --color-text-muted: #a89a88;
  --color-accent:     #c8903a;
  --color-accent-hot: #d65a20;
  --color-accent-glow: rgba(200, 144, 58, 0.15);
  --color-white:      #ffffff;
  --color-border:     rgba(255, 245, 230, 0.08);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 120px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s var(--ease-out);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hot);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 16px 38px;
  font-size: 0.82rem;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hot);
  border-color: var(--color-accent-hot);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 83, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
  padding-top: 80px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
  display: block;
}

.section-label-light {
  color: var(--color-accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 8px;
}

.section-title-light {
  color: var(--color-white);
}

.text-accent {
  color: var(--color-accent);
  font-style: italic;
}

.section-description {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ==========================================================
   ANNOUNCEMENT BAR
   ========================================================== */
.announcement-bar {
  background: var(--color-accent);
  color: var(--color-bg);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.announcement-bar a {
  color: var(--color-bg);
  font-weight: 700;
  text-decoration: underline;
}

.announcement-bar a:hover {
  color: var(--color-white);
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, top 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  top: 0;
}

.site-header.has-announcement {
  top: 40px;
}

.site-header.scrolled.has-announcement {
  top: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.logo:hover {
  color: var(--color-accent);
}

.logo-icon {
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links > li > a {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links > li > a:hover {
  color: var(--color-accent);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  transition: all 0.2s ease;
}

.dropdown li a:hover {
  color: var(--color-accent);
  background: rgba(212, 160, 83, 0.06);
  padding-left: 24px;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.nav-phone:hover {
  color: var(--color-accent);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/hero.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
}

.hero-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.5s var(--ease-out) forwards;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.7s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.9s var(--ease-out) forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.2s var(--ease-out) forwards;
}

.hero-scroll-indicator span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   MENU SECTION
   ========================================================== */
.section-menu {
  background: var(--color-bg);
  padding-bottom: 60px;
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-tab {
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.menu-tab.active {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

/* Menu Grid */
.menu-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 0 0 12px 0;
  min-height: 320px;
  /* Hide scrollbar but allow scrolling */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.menu-grid::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

.menu-card {
  flex: 0 0 280px;
  height: 300px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 160, 83, 0.2);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  flex: 0 0 110px;
  width: 100%;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}

.menu-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}

.menu-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.menu-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}

.menu-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Menu navigation buttons */
.menu-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.menu-prev,
.menu-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-prev:hover,
.menu-next:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}

/* Sub-links row */
.menu-sub-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.sub-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
  padding: 12px 0;
  position: relative;
}

.sub-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.sub-link:hover {
  color: var(--color-accent);
}

.sub-link:hover::after {
  width: 100%;
}

/* ==========================================================
   ABOUT SECTION
   ========================================================== */
.section-about {
  background: var(--color-bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
}

/* About sub-link cards */
.about-sub-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sub-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: center;
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.sub-link-card:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.sub-link-icon {
  font-size: 2rem;
}

/* ==========================================================
   HORIZONTAL ACCORDION
   ========================================================== */
.section-h-accordion {
  padding: 0;
  overflow: hidden;
}

.h-accordion {
  display: flex;
  width: 100%;
  height: 600px;
}

.h-accordion-panel {
  position: relative;
  flex: 0 0 80px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s var(--ease-out);
}

.h-accordion-panel.active {
  flex: 1 1 0%;
  cursor: default;
}

/* Background image layer */
.h-accordion-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}

.h-accordion-panel:hover .h-accordion-bg {
  transform: scale(1.04);
}

.h-accordion-panel.active .h-accordion-bg {
  transform: scale(1);
}

/* Dark overlay */
.h-accordion-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  transition: background 0.6s ease;
}

.h-accordion-panel:not(.active) .h-accordion-overlay {
  background: rgba(10, 10, 10, 0.7);
}

.h-accordion-panel:not(.active):hover .h-accordion-overlay {
  background: rgba(10, 10, 10, 0.5);
}

/* Collapsed label (vertical text) */
.h-accordion-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.h-accordion-panel.active .h-accordion-label {
  opacity: 0;
}

/* Expanded content */
.h-accordion-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 48px 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

.h-accordion-panel.active .h-accordion-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.5s ease 0.25s, transform 0.5s var(--ease-out) 0.25s;
}

.h-accordion-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.h-accordion-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 24px;
}

.h-accordion-content .btn {
  border-color: rgba(255, 255, 255, 0.5);
}

.h-accordion-content .btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Dividers between panels */
.h-accordion-panel + .h-accordion-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================
   GALLERY STRIP
   ========================================================== */
.section-gallery {
  padding: 0;
  overflow: hidden;
}

.gallery-strip {
  display: flex;
  gap: 4px;
}

.gallery-item {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s ease;
  filter: brightness(0.7);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.section-testimonials {
  background: var(--color-bg);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease-out);
  cursor: grab;
}

.testimonials-track:active {
  cursor: grabbing;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(212, 160, 83, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}

/* ==========================================================
   RESERVE / CTA SECTION
   ========================================================== */
.section-reserve {
  position: relative;
  padding: 140px 0;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1555507036-ab1f4038024a?w=1920&h=800&fit=crop') center/cover no-repeat fixed;
}

.reserve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
}

.reserve-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.reserve-description {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.reserve-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--color-bg-alt);
  padding: 80px 0 0;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.logo-footer {
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul li {
  padding: 4px 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.footer-col ul li a {
  color: var(--color-text-muted);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .h-accordion {
    height: 500px;
  }

  .h-accordion-panel {
    flex: 0 0 60px;
  }

  .h-accordion-content {
    padding: 36px 40px;
  }

  .about-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }

  .menu-card {
    flex: 0 0 calc(50% - 12px);
    height: 360px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .h-accordion {
    flex-direction: column;
    height: auto;
  }

  .h-accordion-panel {
    flex: 0 0 60px;
  }

  .h-accordion-panel.active {
    flex: 0 0 320px;
  }

  .h-accordion-label {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 0.9rem;
  }

  .h-accordion-content {
    padding: 24px 28px;
  }

  .h-accordion-content p {
    font-size: 0.9rem;
  }

  .h-accordion-panel + .h-accordion-panel {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .announcement-bar {
    font-size: 0.72rem;
    padding: 8px 16px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right 0.4s var(--ease-out);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
  }

  .nav-actions {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-sub-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-tabs {
    flex-wrap: wrap;
  }

  .menu-grid {
    gap: 16px;
    min-height: 360px;
  }

  .menu-card {
    flex: 0 0 calc(100vw - 48px);
    max-width: 280px;
    height: 360px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
  }

  .gallery-strip {
    flex-wrap: wrap;
  }

  .gallery-item {
    flex: 1 1 48%;
  }

  .gallery-item:last-child {
    display: none;
  }

  .gallery-item img {
    height: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reserve-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about-sub-links {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .sub-link-card {
    padding: 24px 12px;
  }

  .menu-tabs {
    gap: 6px;
  }

  .menu-tab {
    padding: 10px 18px;
    font-size: 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    margin-bottom: 120px;
  }

  .hero-scroll-indicator {
    bottom: 20px;
  }

  .menu-prev,
  .menu-next,
  .testimonial-prev,
  .testimonial-next {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    line-height: 1;
  }
}
