/* ============================================
   EMBER — Editorial Restaurant Styles
   ============================================ */

/* ----- Variables ----- */
:root {
  --black: #0d0d0d;
  --charcoal: #121212;
  --charcoal-soft: #1a1a1a;
  --espresso: #2c1810;
  --walnut: #5c3a1e;
  --walnut-light: #7a4f2e;
  --amber: #c4956a;
  --amber-light: #d4a77e;
  --gold: #e8c36a;
  --bronze: #a67c52;
  --cream: #f5f0eb;
  --cream-dark: #e8e0d8;
  --ivory: #f8f4ef;
  --white: #ffffff;
  --muted: rgba(245, 240, 235, 0.5);
  --muted-strong: rgba(245, 240, 235, 0.7);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1200px;
  --pad: 140px 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--charcoal);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--amber); color: var(--black); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--charcoal-soft); border-radius: 2px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ----- Utility ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

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

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 15px 0;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(245, 240, 235, 0.15);
  padding-bottom: 4px;
}
.btn-outline:hover {
  border-bottom-color: var(--amber);
  color: var(--amber);
}

.btn-full { width: 100%; justify-content: center; padding: 18px 32px; }

/* ----- Header / Nav ----- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease);
}

.header.solid {
  background: rgba(13, 13, 13, 0.98);
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 240, 235, 0.04);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-mark {
  font-family: var(--font-accent);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}

.header-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
  position: relative;
}
.header-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.4s var(--ease);
}
.header-links a:hover { color: var(--cream); }
.header-links a:hover::after { width: 100%; }

.header-cta {
  border: 1px solid rgba(196, 149, 106, 0.3) !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  color: var(--amber) !important;
}
.header-cta::after { display: none !important; }
.header-cta:hover {
  background: var(--amber) !important;
  color: var(--black) !important;
}

.header-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.header-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
  border-radius: 1px;
}
.header-toggle.active span:first-child { transform: rotate(45deg) translate(4px, 4px); }
.header-toggle.active span:last-child { transform: rotate(-45deg) translate(4px, -4px); }

/* ----- Hero ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(13, 13, 13, 0.6) 50%,
    rgba(13, 13, 13, 0.85) 80%,
    var(--charcoal) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 120px;
  width: 100%;
}

.hero-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 20px;
  letter-spacing: 1px;
  animation: heroUp 1s 0.3s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.95;
  margin-bottom: 24px;
}
.hero-line { display: block; color: var(--cream); }
.hero-line-last { color: var(--amber); font-style: italic; }
.hero-line:nth-child(1) { animation: heroUp 1s 0.5s both; }
.hero-line:nth-child(2) { animation: heroUp 1s 0.7s both; }

.hero-desc {
  font-size: 16px;
  color: var(--muted-strong);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: heroUp 1s 0.9s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: heroUp 1s 1.1s both;
}

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

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: heroUp 1s 1.5s both;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero-scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ----- About ----- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-image {
  position: relative;
  overflow: hidden;
}
.about-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.about-text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  color: var(--charcoal);
}

.about-tag {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--bronze);
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.1;
  margin-bottom: 28px;
}
.about-title span { display: block; }
.about-title span:last-child { color: var(--walnut); font-style: italic; }

.about-p {
  font-size: 14px;
  color: rgba(18, 18, 18, 0.65);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 480px;
}
.about-p:last-of-type { margin-bottom: 36px; }

.about-stats {
  display: flex;
  gap: 48px;
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--walnut);
  line-height: 1;
}
.about-stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.4);
}

/* ----- Dishes ----- */
.dishes {
  padding: var(--pad);
  background: var(--charcoal);
}

.dishes-head {
  max-width: var(--container);
  margin: 0 auto 80px;
  padding: 0 24px;
}

.dishes-tag {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 16px;
}

.dishes-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.dishes-title span { display: block; }
.dishes-title span:last-child { color: var(--amber); font-style: italic; }

.dishes-desc {
  font-size: 14px;
  color: var(--muted);
}

.dishes-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dish-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(245, 240, 235, 0.02);
  border: 1px solid rgba(245, 240, 235, 0.05);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.dish-card:hover {
  border-color: rgba(196, 149, 106, 0.15);
  background: rgba(245, 240, 235, 0.04);
}

.dish-image {
  overflow: hidden;
  aspect-ratio: 1;
}
.dish-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s var(--ease);
  position: relative;
}
.dish-card:hover .dish-image-bg { transform: scale(1.06); }

.dish-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dish-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}
.dish-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.dish-price {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--amber);
}

/* ----- Menu ----- */
.menu {
  padding: var(--pad);
  background: var(--cream);
  color: var(--charcoal);
}

.menu-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.menu-head {
  margin-bottom: 60px;
}

.menu-tag {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--bronze);
  margin-bottom: 16px;
}

.menu-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.menu-title span { display: block; }
.menu-title span:last-child { color: var(--walnut); font-style: italic; }

.menu-desc {
  font-size: 14px;
  color: rgba(18, 18, 18, 0.5);
}

.menu-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  padding-bottom: 0;
}

.menu-tab {
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: none;
  color: rgba(18, 18, 18, 0.35);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.menu-tab:hover { color: rgba(18, 18, 18, 0.6); }
.menu-tab.active {
  color: var(--walnut);
  border-bottom-color: var(--walnut);
}

.menu-panels { min-height: 360px; }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
  gap: 24px;
}
.menu-item:last-child { border-bottom: none; }

.menu-item-info h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.menu-item-info p {
  font-size: 13px;
  color: rgba(18, 18, 18, 0.45);
}

.menu-item-price {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--walnut);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ----- Chef ----- */
.chef {
  padding: var(--pad);
  background: var(--charcoal);
}

.chef-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.chef-image {
  position: relative;
}
.chef-image-bg {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}
.chef-image-border {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(196, 149, 106, 0.15);
  z-index: -1;
}

.chef-tag {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 16px;
}

.chef-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 4px;
}
.chef-title span { display: block; }
.chef-title span:last-child { color: var(--amber); font-style: italic; }

.chef-role {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
}

.chef-bio {
  font-size: 14px;
  color: var(--muted-strong);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 520px;
}
.chef-bio:last-of-type { margin-bottom: 32px; }

.chef-awards {
  display: flex;
  gap: 40px;
}
.chef-award { display: flex; flex-direction: column; gap: 4px; }
.chef-award-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--amber);
  line-height: 1;
}
.chef-award-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ----- Gallery ----- */
.gallery {
  padding: var(--pad);
  background: var(--cream);
  color: var(--charcoal);
}

.gallery-head {
  max-width: var(--container);
  margin: 0 auto 60px;
  padding: 0 24px;
}

.gallery-tag {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--bronze);
  margin-bottom: 16px;
}

.gallery-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.1;
}
.gallery-title span { display: block; }
.gallery-title span:last-child { color: var(--walnut); font-style: italic; }

.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(3) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s var(--ease);
  position: relative;
}
.gallery-item:hover .gallery-item-bg { transform: scale(1.06); }

.gallery-item-hover {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-item-hover { opacity: 1; }

.gallery-item-hover span {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--cream);
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-item-hover span { transform: translateY(0); }

.gallery-item-hover i {
  font-size: 18px;
  color: var(--amber);
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-item-hover i { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 13, 13, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 36px;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 2001;
}
.lightbox-close:hover { color: var(--amber); transform: rotate(90deg); }

.lightbox-inner { text-align: center; max-width: 700px; padding: 24px; }

.lightbox-visual {
  width: 400px;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 24px;
  border: 1px solid rgba(245, 240, 235, 0.04);
}

.lightbox-label {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
}

/* ----- Testimonials / Notes ----- */
.notes {
  padding: var(--pad);
  background: var(--charcoal);
}

.notes-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.notes-tag {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 16px;
}

.notes-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.1;
  margin-bottom: 60px;
}
.notes-title span { display: block; }
.notes-title span:last-child { color: var(--amber); font-style: italic; }

.notes-carousel {
  overflow: hidden;
  position: relative;
}
.notes-track { display: flex; transition: transform 0.6s var(--ease); }

.notes-card {
  flex: 0 0 100%;
  padding: 0 20px 40px;
  margin: 0;
  text-align: center;
}
.notes-stars { color: var(--amber); font-size: 14px; margin-bottom: 24px; display: flex; justify-content: center; gap: 4px; }

.notes-card p {
  font-size: 18px;
  font-style: italic;
  color: var(--muted-strong);
  line-height: 1.8;
  margin-bottom: 28px;
  font-family: var(--font-serif);
}

.notes-card footer { display: flex; flex-direction: column; gap: 2px; }
.notes-card footer strong { font-size: 14px; color: var(--cream); font-weight: 500; }
.notes-card footer cite { font-size: 12px; color: var(--amber); font-style: normal; }

.notes-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.notes-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(245, 240, 235, 0.08);
  background: rgba(245, 240, 235, 0.03);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  font-size: 14px;
}
.notes-btn:hover { border-color: var(--amber); color: var(--amber); }

.notes-dots { display: flex; gap: 8px; }
.notes-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(245, 240, 235, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.notes-dot.active { background: var(--amber); width: 24px; border-radius: 3px; }

/* ----- Reservation ----- */
.reserve {
  padding: var(--pad);
  background: var(--cream);
  color: var(--charcoal);
}

.reserve-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.reserve-head { text-align: center; margin-bottom: 52px; }

.reserve-tag {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--bronze);
  margin-bottom: 16px;
}

.reserve-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.reserve-title span { display: block; }
.reserve-title span:last-child { color: var(--walnut); font-style: italic; }

.reserve-desc {
  font-size: 14px;
  color: rgba(18, 18, 18, 0.5);
  max-width: 420px;
  margin: 0 auto;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.reserve-field { display: flex; flex-direction: column; gap: 6px; }
.reserve-field-wide { grid-column: span 2; }

.reserve-field label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.4);
  font-weight: 600;
}

.reserve-field input,
.reserve-field select,
.reserve-field textarea {
  background: rgba(18, 18, 18, 0.03);
  border: 1px solid rgba(18, 18, 18, 0.08);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--charcoal);
  transition: border-color 0.3s var(--ease);
  outline: none;
  border-radius: 0;
}
.reserve-field input:focus,
.reserve-field select:focus,
.reserve-field textarea:focus { border-color: var(--walnut); }
.reserve-field input::placeholder,
.reserve-field textarea::placeholder { color: rgba(18, 18, 18, 0.15); }
.reserve-field select option { background: var(--cream); color: var(--charcoal); }
.reserve-field textarea { resize: vertical; min-height: 48px; }

.reserve-error {
  font-size: 11px;
  color: #b84a4a;
  display: none;
}
.reserve-field.error input,
.reserve-field.error select { border-color: #b84a4a; }
.reserve-field.error .reserve-error { display: block; }

.reserve-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(92, 58, 30, 0.06);
  border: 1px solid rgba(92, 58, 30, 0.12);
  margin-top: 20px;
  font-size: 14px;
  color: var(--walnut);
}
.reserve-success.active { display: flex; }
.reserve-success i { font-size: 18px; }

/* ----- Location ----- */
.location {
  padding: var(--pad);
  background: var(--charcoal);
}

.location-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.location-tag {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 16px;
}

.location-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.location-title span { display: block; }
.location-title span:last-child { color: var(--amber); font-style: italic; }

.location-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}

.location-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 0; }

.location-item { display: flex; gap: 16px; align-items: flex-start; }
.location-item i { font-size: 16px; color: var(--amber); margin-top: 2px; width: 20px; }
.location-item strong {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
  font-weight: 600;
}
.location-item p,
.location-item a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.location-item a:hover { color: var(--amber); }

.location-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 20px;
  font-size: 14px;
  color: var(--muted);
}

.location-map {
  position: relative;
}
.location-map-bg {
  aspect-ratio: 16/11;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.location-map-pin {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid rgba(245, 240, 235, 0.06);
  font-size: 13px;
  color: var(--cream);
  font-family: var(--font-accent);
  font-style: italic;
}
.location-map-pin i { color: var(--amber); }

/* ----- Footer ----- */
.footer {
  padding: 60px 24px 0;
  background: var(--black);
  border-top: 1px solid rgba(245, 240, 235, 0.04);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-mark {
  font-family: var(--font-accent);
  font-size: 24px;
  font-style: italic;
  color: var(--cream);
}

.footer-desc { font-size: 13px; color: var(--muted); margin-top: 4px; }

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--amber); }

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245, 240, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--amber); color: var(--amber); }

.footer-legal {
  border-top: 1px solid rgba(245, 240, 235, 0.04);
  padding: 20px 0;
  text-align: center;
}
.footer-legal p { font-size: 12px; color: rgba(245, 240, 235, 0.15); letter-spacing: 0.5px; }

/* ----- Scroll to Top ----- */
.top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 40px; height: 40px;
  border: 1px solid rgba(245, 240, 235, 0.08);
  background: rgba(13, 13, 13, 0.9);
  color: var(--cream);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  z-index: 999;
}
.top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.top:hover { border-color: var(--amber); color: var(--amber); }

/* ----- Skeleton Loading (YouTube-style shimmer) ----- */
.skeleton {
  position: relative;
  overflow: hidden;
  background-color: rgba(245, 240, 235, 0.03) !important;
  background-image: none !important;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 240, 235, 0.04) 40%,
    rgba(245, 240, 235, 0.06) 50%,
    rgba(245, 240, 235, 0.04) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Image loaded — shimmer fades out */
.skeleton.loaded::after {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Image failed — solid fallback */
.skeleton.error {
  background: linear-gradient(135deg, rgba(245,240,235,0.02), rgba(245,240,235,0.04)) !important;
  background-image: none !important;
}
.skeleton.error::after { opacity: 0; }

/* Error fallback icon */
.skeleton-error-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.skeleton.error .skeleton-error-icon { opacity: 1; }
.skeleton-error-icon i {
  font-size: 28px;
  color: rgba(196, 149, 106, 0.25);
}

/* ----- Reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 50vh; }
  .about-text { padding: 80px 48px; }
  .dishes-grid { grid-template-columns: 1fr; }
  .dish-card { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(3) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .chef-inner { grid-template-columns: 1fr; gap: 48px; }
  .chef-image { max-width: 400px; margin: 0 auto; }
  .location-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --pad: 100px 20px; }

  .header-links {
    position: fixed;
    top: 0; right: -100%;
    flex-direction: column;
    background: rgba(13, 13, 13, 0.99);
    width: 75%;
    max-width: 300px;
    height: 100vh;
    padding: 100px 40px 40px;
    gap: 28px;
    transition: right 0.4s var(--ease);
    border-left: 1px solid rgba(245, 240, 235, 0.04);
  }
  .header-links.active { right: 0; }
  .header-toggle { display: flex; }

  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-title { font-size: clamp(40px, 12vw, 64px); }

  .about-text { padding: 60px 28px; }
  .about-stats { gap: 28px; flex-wrap: wrap; }

  .dish-card { grid-template-columns: 1fr; }
  .dish-image { aspect-ratio: 4/3; }
  .dish-body { padding: 24px; }

  .menu-tabs { overflow-x: auto; gap: 0; }
  .menu-tab { white-space: nowrap; padding: 12px 16px; }
  .menu-item { flex-direction: column; gap: 6px; }
  .menu-item-price { align-self: flex-end; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item:nth-child(4) { grid-column: span 1; }

  .reserve-grid { grid-template-columns: 1fr; }
  .reserve-field-wide { grid-column: span 1; }

  .location-inner { gap: 32px; }
  .location-hours { font-size: 13px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 24px; }
  .footer-nav { justify-content: center; }

  .lightbox-visual { width: 260px; height: 340px; }

  .notes-title { margin-bottom: 40px; }
  .notes-card p { font-size: 16px; }
}

@media (max-width: 480px) {
  .about-text { padding: 48px 24px; }
  .about-stat-num { font-size: 28px; }
  .chef-awards { gap: 24px; flex-wrap: wrap; }
  .dish-body h3 { font-size: 18px; }
}

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