/* ============================================
   SEINO — Premium Restaurant CSS
   Refined Taste. Timeless Experience.
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --dark: #111111;
  --dark-card: #151515;
  --dark-border: #2a2a2a;
  --gold: #C9A96E;
  --gold-light: #D4B87A;
  --gold-dark: #B8944F;
  --cream: #F5F0E8;
  --cream-light: #FAF8F4;
  --beige: #E8DFD0;
  --white: #FFFFFF;
  --text: #E0DCD4;
  --text-muted: #8A8580;
  --text-dark: #555;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 30px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --radius: 4px;
  --radius-lg: 8px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

.section {
  padding: 120px 0;
  position: relative;
}

/* --- Typography --- */
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.section-label-light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title-light { color: var(--white); }

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}
.section-divider-center { margin-left: auto; margin-right: auto; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}

.btn-outline {
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.btn-full { width: 100%; text-align: center; }

/* --- Loader --- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-inner { text-align: center; }
.loader-logo {
  width: 60px;
  height: 60px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 120px;
  height: 1px;
  background: var(--dark-border);
  margin: 20px auto 0;
  border-radius: 1px;
  overflow: hidden;
}
.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
  animation: loaderFill 1.5s ease forwards;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.5);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo { display: flex; align-items: center; }
.logo-svg {
  height: 38px;
  width: auto;
  color: var(--gold);
  transition: color var(--transition);
}
.navbar-logo:hover .logo-svg { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.cart-toggle {
  position: relative;
  color: var(--text);
  transition: color var(--transition);
  padding: 4px;
}
.cart-toggle:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* --- Cart Sidebar --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--charcoal);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.active { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--dark-border);
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
}
.cart-close {
  font-size: 1.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
  line-height: 1;
}
.cart-close:hover { color: var(--cream); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 16px;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-border);
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold);
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-item-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cart-item-controls button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cart-item-qty {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  min-width: 20px;
  text-align: center;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--dark-border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
}
.cart-total span:last-child {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.3rem;
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.6) 70%,
    rgba(10,10,10,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-badge {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--beige);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero-divider {
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 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;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 60px; }
}

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

/* --- About --- */
.about { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.05); }

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--black);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exp {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.about-exp-text {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}

.about-content .section-label { margin-bottom: 12px; }
.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature svg { flex-shrink: 0; margin-top: 2px; }
.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --- Signature Dishes --- */
.signature {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.signature-bg {
  position: absolute;
  inset: 0;
}
.signature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signature-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.88);
}

.signature .container { position: relative; z-index: 2; }

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.signature-card {
  background: rgba(20,20,20,0.8);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.signature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.signature-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.signature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.signature-card:hover .signature-card-img img { transform: scale(1.1); }
.signature-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
}
.signature-card-body {
  padding: 28px;
}
.signature-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}
.signature-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.signature-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
}

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

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 12px 28px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--dark-border);
  border-radius: 30px;
  transition: all var(--transition);
}
.menu-tab:hover, .menu-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  animation: menuFadeIn 0.4s ease forwards;
}
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-item:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.menu-item-img {
  width: 110px;
  height: 110px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-item:hover .menu-item-img img { transform: scale(1.1); }

.menu-item-info { flex: 1; display: flex; flex-direction: column; }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  gap: 12px;
}
.menu-item-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
}
.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}
.menu-item-info > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.menu-item .add-to-cart {
  align-self: flex-start;
}

/* --- Order Section --- */
.order-section {
  background: var(--black);
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.order-step {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.order-step:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}
.order-step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}
.order-step h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}
.order-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Gallery --- */
.gallery-section {
  background: var(--charcoal);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 10px 24px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--dark-border);
  border-radius: 30px;
  transition: all var(--transition);
}
.gallery-tab:hover, .gallery-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius);
}

.gallery-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--cream);
  font-size: 2rem;
  transition: color 0.3s;
  z-index: 2;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
.lightbox-close { top: 30px; right: 30px; font-size: 2.5rem; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* --- Testimonials --- */
.testimonials {
  background: var(--black);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  padding: 36px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}
.testimonial-author h5 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Location --- */
.location-section {
  background: var(--charcoal);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
}
.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.location-detail svg { flex-shrink: 0; margin-top: 2px; }
.location-detail h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}
.location-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.location-detail a {
  color: var(--gold);
  transition: color 0.3s;
}
.location-detail a:hover { color: var(--gold-light); }

.location-map {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--dark-border);
}
.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-nav h5, .footer-hours h5, .footer-social h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-nav ul, .footer-hours ul, .footer-social ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-nav a, .footer-hours a, .footer-social a, .footer-nav li, .footer-hours li, .footer-social li {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
  text-decoration: none;
  line-height: 1.55;
}
.footer-nav a:hover, .footer-hours a:hover, .footer-social a:hover { color: var(--gold); }

.social-icons {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-copy {
  font-size: 0.78rem;
  color: #555;
}

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 6000;
  font-size: 0.88rem;
  color: var(--cream);
  transition: transform 0.4s ease;
  box-shadow: var(--shadow);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { right: 20px; }
  .about-exp { right: 20px; }
  .signature-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-map { height: 350px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active { right: 0; }
  .nav-link { font-size: 0.9rem; }

  .hero { min-height: 600px; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }

  .signature-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .order-steps { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .about-img-main img { height: 350px; }
  .about-img-accent { width: 150px; height: 190px; bottom: -20px; right: 10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { padding: 12px 28px; font-size: 0.8rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .menu-item { flex-direction: column; }
  .menu-item-img { width: 100%; height: 180px; }
  .menu-tabs, .gallery-tabs { gap: 6px; }
  .menu-tab, .gallery-tab { padding: 8px 16px; font-size: 0.7rem; }
}

/* ==========================================================================
   Page layouts — Legal, Auth, Sub-pages
   ========================================================================== */
.page-wrap {
  min-height: 100vh;
  padding: 140px 0 80px;
  background: var(--dark);
}
.page-wrap-narrow { max-width: 760px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.page-header { text-align: center; margin-bottom: 50px; }
.page-header .section-label { display: block; margin-bottom: 10px; }
.page-header .section-title { font-size: clamp(2rem, 4vw, 3rem); }
.page-header .section-divider { margin: 20px auto; }
.page-header p { color: rgba(245, 240, 232, 0.6); max-width: 560px; margin: 16px auto 0; font-family: 'Inter', sans-serif; font-size: 0.95rem; line-height: 1.7; }

.legal-content { color: rgba(245, 240, 232, 0.78); font-family: 'Inter', sans-serif; font-size: 0.92rem; line-height: 1.85; }
.legal-content h2 { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.4rem; margin: 36px 0 14px; font-weight: 500; letter-spacing: 1px; }
.legal-content h3 { color: var(--cream); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin: 24px 0 10px; font-weight: 500; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 18px 22px; }
.legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201, 169, 110, 0.3); }
.legal-content a:hover { border-bottom-color: var(--gold); }
.legal-meta { color: rgba(245, 240, 232, 0.5); font-size: 0.85rem; margin-bottom: 30px; font-style: italic; }

/* Auth / Form card */
.auth-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 50px 44px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  position: relative;
}
.auth-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.15);
  margin: 6px;
  border-radius: 2px;
  pointer-events: none;
}
.auth-brand { text-align: center; margin-bottom: 30px; }
.auth-brand-mark { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.8rem; letter-spacing: 8px; font-weight: 500; }
.auth-title { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1.6rem; text-align: center; margin-bottom: 8px; font-weight: 500; }
.auth-subtitle { color: rgba(245, 240, 232, 0.55); text-align: center; font-family: 'Inter', sans-serif; font-size: 0.88rem; margin-bottom: 32px; line-height: 1.6; }

.form-group { margin-bottom: 20px; position: relative; }
.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid var(--dark-border);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(17, 17, 17, 0.9);
}
.form-input::placeholder { color: rgba(245, 240, 232, 0.3); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-helper { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: rgba(245, 240, 232, 0.5); margin-top: 6px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; font-family: 'Inter', sans-serif; font-size: 0.82rem; color: rgba(245, 240, 232, 0.7); line-height: 1.5; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); }
.form-check a { color: var(--gold); text-decoration: none; }
.form-check a:hover { text-decoration: underline; }

.auth-footer { text-align: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--dark-border); }
.auth-footer p { color: rgba(245, 240, 232, 0.55); font-family: 'Inter', sans-serif; font-size: 0.85rem; margin: 8px 0; }
.auth-footer a { color: var(--gold); text-decoration: none; font-weight: 500; }
.auth-footer a:hover { text-decoration: underline; }

/* OTP inputs */
.otp-wrap { display: flex; gap: 10px; justify-content: center; margin: 24px 0; }
.otp-input {
  width: 52px;
  height: 60px;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid var(--dark-border);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
}
.otp-input:focus { border-color: var(--gold); }
.otp-timer { text-align: center; color: rgba(245, 240, 232, 0.5); font-family: 'Inter', sans-serif; font-size: 0.82rem; margin-top: 10px; }

/* Form status */
.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-status.success { display: block; background: rgba(201, 169, 110, 0.08); border: 1px solid rgba(201, 169, 110, 0.3); color: var(--gold-light); }
.form-status.error { display: block; background: rgba(180, 60, 60, 0.1); border: 1px solid rgba(180, 60, 60, 0.3); color: #E8A0A0; }

/* Simple nav for sub pages */
.subnav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 22px 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--dark-border);
  z-index: 100;
}
.subnav-inner { display: flex; justify-content: space-between; align-items: center; }
.subnav a.back-link { color: rgba(245, 240, 232, 0.7); font-family: 'Inter', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; text-decoration: none; transition: color 0.3s; }
.subnav a.back-link:hover { color: var(--gold); }
.subnav-brand { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.3rem; letter-spacing: 6px; font-weight: 500; text-decoration: none; }

/* Minimal footer for sub-pages */
.mini-footer { padding: 30px 0; border-top: 1px solid var(--dark-border); background: #0c0c0c; }
.mini-footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
.mini-footer p { color: rgba(245, 240, 232, 0.45); font-family: 'Inter', sans-serif; font-size: 0.8rem; }
.mini-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.mini-footer-links a { color: rgba(245, 240, 232, 0.55); font-family: 'Inter', sans-serif; font-size: 0.8rem; text-decoration: none; transition: color 0.3s; }
.mini-footer-links a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .page-wrap { padding: 110px 0 60px; }
  .auth-card { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .otp-input { width: 42px; height: 52px; font-size: 1.3rem; }
  .otp-wrap { gap: 8px; }
  .mini-footer-inner { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Reservation Section (homepage)
   ========================================================================== */
.reservation-section {
  background: #0c0c0c;
  position: relative;
  overflow: hidden;
}
.reservation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.reservation-wrap {
  max-width: 780px;
  margin: 50px auto 0;
  padding: 56px 56px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  position: relative;
}
.reservation-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.15);
  margin: 8px;
  border-radius: 2px;
  pointer-events: none;
}
.reservation-form { position: relative; }
.reservation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.reservation-form .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.reservation-form .form-group { margin-bottom: 18px; }

.reservation-form input[type="date"],
.reservation-form input[type="time"] {
  color-scheme: dark;
}
.reservation-form input[type="date"]::-webkit-calendar-picker-indicator,
.reservation-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.75) sepia(0.3) saturate(2) hue-rotate(10deg);
  cursor: pointer;
}

.reservation-checkboxes {
  margin: 26px 0 28px;
  padding: 22px 24px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 2px;
}
.reservation-checkboxes .form-check { margin-bottom: 14px; }
.reservation-checkboxes .form-check:last-child { margin-bottom: 0; }

.reservation-success {
  display: none;
  text-align: center;
  padding: 50px 30px;
}
.reservation-success.active { display: block; }
.reservation-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation-success h3 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.reservation-success p {
  color: rgba(245, 240, 232, 0.65);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 8px;
}
.reservation-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  max-width: 480px;
  margin: 30px auto 24px;
  padding: 24px 30px;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 2px;
  text-align: left;
}
.reservation-summary div span:first-child {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 4px;
}
.reservation-summary div span:last-child {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .reservation-wrap { padding: 36px 24px; margin: 40px 16px 0; }
  .reservation-form .form-row, .reservation-form .form-row-3 { grid-template-columns: 1fr; gap: 0; }
  .reservation-summary { grid-template-columns: 1fr; padding: 20px; }
}


