/* ============================================
   EMBER & OAK — Wood-Fired Steakhouse
   Complete Stylesheet
   ============================================ */

/* ----- Design Tokens ----- */
:root {
  --charcoal: #1a1a1a;
  --leather: #8b4513;
  --amber: #d4a030;
  --cream: #f5f0e8;
  --deep-red: #6b1d1d;
  --warm-gray: #3a3530;
  --dark-bg: #111111;
  --card-bg: #1e1e1e;
  --card-border: #2a2520;
  --text-muted: #a09890;
  --text-dim: #7a7068;

  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --container-max: 1280px;
  --container-padding: 24px;
  --section-padding: clamp(80px, 12vw, 160px);
  --gap: 24px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--dark-bg);
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--cream);
  background: var(--dark-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Texture overlay on body */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

a {
  color: var(--amber);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--cream);
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* ----- Container ----- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.section-desc {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: #e8b440;
  color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(212, 160, 48, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-outline:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: var(--cream);
  color: var(--cream);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.9375rem;
}

.btn-full {
  width: 100%;
}

/* ----- Skip Link ----- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--charcoal);
  padding: 12px 24px;
  z-index: 10000;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
  color: var(--charcoal);
}

/* ----- Promo Banner ----- */
.promo-banner {
  background: var(--deep-red);
  color: var(--cream);
  text-align: center;
  padding: 10px 48px;
  font-size: clamp(0.7rem, 0.75rem + 0.1vw, 0.8125rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
  font-weight: 500;
  transition: all 0.4s ease;
}

.promo-banner.hidden {
  margin-top: -38px;
  opacity: 0;
  pointer-events: none;
}

.promo-banner .close-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
  line-height: 1;
  padding: 4px;
}

.promo-banner .close-btn:hover {
  opacity: 1;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.has-banner {
  top: 38px;
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 2px 60px rgba(0, 0, 0, 0.4);
}

.header.scrolled.has-banner {
  top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--cream);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 3px;
}

/* Nav */
.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--cream);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  transform-origin: center;
}

.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);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 24px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.mobile-menu.open .mobile-menu-inner {
  transform: translateY(0);
}

.mobile-menu-header {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header .logo-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  color: var(--cream);
}

.mobile-close {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--cream);
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--amber);
}

.mobile-cta {
  margin-top: 40px;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.875rem;
  line-height: 1.8;
}

/* ----- Hero ----- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  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;
  transform: scale(1.05);
  transition: transform 10s linear;
}

.hero-bg img.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 35%,
    rgba(0, 0, 0, 0.4) 65%,
    rgba(17, 17, 17, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 12vw, 11rem);
  line-height: 0.82;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title span {
  display: block;
}

.hero-ampersand {
  color: var(--amber);
}

.hero-subtitle {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Section ----- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-divider {
  padding: 0 var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-divider svg {
  width: 100%;
  height: 2px;
}

/* ----- Story Section ----- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.story-text {
  max-width: 560px;
}

.story-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 28px;
}

.story-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text strong {
  color: var(--amber);
  font-weight: 600;
}

.story-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.story-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.caption-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

.caption-text {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.7);
}

/* ----- Menu Section ----- */
.menu {
  background: var(--charcoal);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}

.menu-tab {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: 1px solid rgba(245, 240, 232, 0.1);
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover {
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.3);
}

.menu-tab.active {
  background: var(--amber);
  color: var(--charcoal);
  border-color: var(--amber);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.menu-featured {
  position: sticky;
  top: 100px;
}

.menu-featured img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.menu-items, .menu-items-full {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-items-full {
  max-width: 700px;
  margin: 0 auto;
}

.menu-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  position: relative;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item.highlight {
  background: rgba(212, 160, 48, 0.04);
  border: 1px solid rgba(212, 160, 48, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 8px 0;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(245, 240, 232, 0.15);
  min-width: 20px;
  margin-bottom: 6px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-price small {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.menu-item-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212, 160, 48, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 8px;
}

/* ----- Bar Section ----- */
.bar-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.bar-bg {
  position: absolute;
  inset: 0;
}

.bar-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.95) 0%,
    rgba(17, 17, 17, 0.7) 50%,
    rgba(17, 17, 17, 0.4) 100%
  );
}

.bar-content {
  position: relative;
  z-index: 2;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.bar-text {
  max-width: 560px;
}

.bar-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.bar-text .section-label {
  text-align: left;
}

.bar-text p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.bar-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.bar-stat {
  display: flex;
  flex-direction: column;
}

.bar-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--amber);
  line-height: 1;
}

.bar-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.bar-note {
  font-size: 0.9375rem !important;
  padding: 16px 20px;
  background: rgba(212, 160, 48, 0.06);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ----- Gallery ----- */
.gallery {
  background: var(--dark-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--cream);
  transform: translateY(8px);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ----- Lightbox ----- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-caption {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--cream);
  margin-top: 16px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  line-height: 1;
  z-index: 10001;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ----- Private Dining ----- */
.private-dining {
  background: var(--charcoal);
}

.private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.private-text .section-title {
  text-align: left;
}

.private-text .section-label {
  text-align: left;
}

.private-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 28px;
}

.private-features {
  margin-bottom: 32px;
}

.private-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.05);
}

.private-features li:last-child {
  border-bottom: none;
}

.private-features svg {
  flex-shrink: 0;
}

.private-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.private-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ----- Dessert Feature ----- */
.dessert-feature {
  background: var(--dark-bg);
}

.dessert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.dessert-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dessert-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.dessert-text .section-title {
  text-align: left;
}

.dessert-text .section-label {
  text-align: left;
}

.dessert-text p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.dessert-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.dessert-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--cream);
}

.dessert-cost {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--amber);
}

/* ----- Testimonials ----- */
.testimonials {
  background: var(--charcoal);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background: rgba(245, 240, 232, 0.02);
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3vw, 40px);
  transition: border-color var(--transition);
}

.testimonial:hover {
  border-color: rgba(212, 160, 48, 0.2);
}

.testimonial-stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
}

.testimonial cite {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-style: normal;
  color: var(--cream);
}

.testimonial footer span {
  font-size: 0.8125rem;
  color: var(--amber);
  letter-spacing: 0.02em;
}

/* ----- Reservations ----- */
.reservations {
  background: var(--dark-bg);
}

.reservation-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(245, 240, 232, 0.06);
  box-shadow: 0 0 0 3px rgba(212, 160, 48, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a09890' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-group .error-msg {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 4px;
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-top: 16px;
}

.form-success {
  text-align: center;
  padding: 40px;
  animation: fadeIn 0.5s ease;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
}

/* ----- Footer ----- */
.footer {
  background: #0a0a0a;
  padding: clamp(60px, 8vw, 100px) 0 40px;
  border-top: 1px solid rgba(245, 240, 232, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 48px);
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  color: var(--cream);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.footer-col address,
.footer-col p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.footer-col a {
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--amber);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-list div {
  display: flex;
  flex-direction: column;
}

.hours-list dt {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hours-list dd {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.newsletter-desc {
  margin-bottom: 16px !important;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.newsletter-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--amber);
}

.newsletter-form input::placeholder {
  color: var(--text-dim);
}

.newsletter-form .btn {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--text-dim);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.social-links a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.05);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--amber);
}

/* ----- Trust Badges / Ratings ----- */
.trust-section {
  background: var(--charcoal);
  padding: clamp(48px, 6vw, 80px) 0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-badge {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  transition: border-color var(--transition);
}

.trust-badge:hover {
  border-color: rgba(212, 160, 48, 0.25);
}

.trust-badge-stars {
  color: var(--amber);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.trust-badge-score {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-badge-icon {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.trust-badge-source {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 4px;
}

.trust-badge-count {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ----- Press & Awards ----- */
.press-section {
  background: var(--dark-bg);
}

.press-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.press-item {
  text-align: center;
  padding: clamp(24px, 3vw, 40px) 16px;
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: var(--radius-md);
  background: rgba(245, 240, 232, 0.02);
  transition: all var(--transition);
}

.press-item:hover {
  border-color: rgba(212, 160, 48, 0.2);
  background: rgba(212, 160, 48, 0.03);
}

.press-name {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.3;
}

.press-quote {
  display: block;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--amber);
  line-height: 1.5;
}

/* ----- Instagram Feed ----- */
.instagram-section {
  background: var(--charcoal);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.insta-post {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insta-post:hover img {
  transform: scale(1.1);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity var(--transition);
}

.insta-post:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.instagram-cta {
  text-align: center;
  margin-top: 40px;
}

/* ----- Gift Card Banner ----- */
.gift-card-banner {
  background: linear-gradient(135deg, var(--deep-red) 0%, #4a1515 50%, var(--charcoal) 100%);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.gift-card-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 160, 48, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.gift-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.gift-card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.gift-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}

.gift-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ----- Delivery & Reservation Partners ----- */
.partners-section {
  background: var(--dark-bg);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 40px;
  border: 1px solid rgba(212, 160, 48, 0.25);
  border-radius: var(--radius-md);
  background: rgba(212, 160, 48, 0.04);
  transition: all var(--transition);
  text-decoration: none;
  min-width: 180px;
}

.partner-badge:hover {
  border-color: var(--amber);
  background: rgba(212, 160, 48, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 48, 0.1);
}

.partner-type {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--cream);
}

/* ----- Map Container ----- */
.map-container {
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  margin-bottom: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.map-container iframe {
  display: block;
  filter: grayscale(0.6) brightness(0.8) contrast(1.1);
  transition: filter var(--transition);
}

.map-container:hover iframe {
  filter: grayscale(0.2) brightness(0.9) contrast(1.05);
}

/* ----- Scroll Animations ----- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Responsive ----- */

/* Tablet */
@media (max-width: 1024px) {
  .nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image img {
    height: 400px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-featured {
    position: static;
  }

  .menu-featured img {
    aspect-ratio: 16/9;
    max-height: 360px;
  }

  .private-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .private-image img {
    height: 400px;
  }

  .dessert-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dessert-image img {
    height: 360px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .bar-stats {
    gap: 24px;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gift-card-inner {
    flex-direction: column;
    text-align: center;
  }

  .gift-card-desc {
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --container-padding: 20px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: clamp(3.5rem, 14vw, 5.5rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-scroll {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item:nth-child(n+5) {
    display: none;
  }

  .menu-tabs {
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    flex-wrap: nowrap;
  }

  .menu-tab {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 0.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .bar-stats {
    flex-direction: column;
    gap: 16px;
  }

  .bar-overlay {
    background: linear-gradient(
      to right,
      rgba(17, 17, 17, 0.95) 0%,
      rgba(17, 17, 17, 0.85) 100%
    );
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .menu-item-name {
    font-size: 1.0625rem;
  }

  .private-image {
    order: -1;
  }

  .private-image img {
    height: 300px;
  }

  .promo-banner {
    font-size: 0.6875rem;
    padding: 10px 40px 10px 16px;
  }

  .story-image img {
    height: 300px;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-badge {
    padding: 20px 16px;
  }

  .press-logos {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .press-logos .press-item:last-child {
    grid-column: 1 / -1;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .instagram-grid .insta-post:nth-child(n+4) {
    display: none;
  }

  .gift-card-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .gift-card-desc {
    margin: 0 auto;
  }

  .partners-grid {
    gap: 12px;
  }

  .partner-badge {
    min-width: 140px;
    padding: 16px 24px;
  }

  .map-container iframe {
    height: 280px;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .hero-title {
    font-size: 3rem;
  }

  .menu-item-header {
    flex-wrap: wrap;
  }

  .menu-item-dots {
    display: none;
  }

  .menu-item-price {
    width: 100%;
    margin-top: 2px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .hero-badge,
  .hero-title,
  .hero-subtitle,
  .hero-tagline,
  .hero-ctas,
  .hero-scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Print */
@media print {
  .header,
  .promo-banner,
  .mobile-menu,
  .hero-scroll,
  .lightbox,
  .gallery,
  .newsletter-form,
  .social-links {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 24px 0;
  }
}