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

:root {
  --gold: #b8972f;
  --gold-light: #d4b44a;
  --gold-bg: rgba(184, 151, 47, 0.08);
  --black: #080808;
  --dark: #0e0e0e;
  --card: #141414;
  --border: rgba(255,255,255,0.06);
  --cream: #faf7f2;
  --cream-alt: #f3ede3;
  --text: #1a1a1a;
  --muted: #999;
  --dim: rgba(255,255,255,0.4);
  --heading: 'Playfair Display', Georgia, serif;
  --body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

/* ===== Shared ===== */
.label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-dark .label { color: var(--gold); }

h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0;
}

.section-dark h2 { color: #fff; }

.line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0 1.5rem;
}

.section { padding: 6.5rem 0; }
.section-dark { background: var(--dark); color: #fff; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full { width: 100%; text-align: center; }
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.65rem; }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black);
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.14em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px; background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: saturate(0.3);
}

.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,151,47,0.2), transparent);
}

.hero-content {
  position: relative; text-align: center; padding: 2rem;
}

.hero-logo {
  height: clamp(140px, 28vw, 300px);
  width: auto;
  margin: 0 auto;
}

.hero-line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 2rem auto;
}

.hero-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--dim);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--dim);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}

/* ===== About ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-right p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ===== Menu ===== */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.menu-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}

.menu-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.4s;
}

.menu-card:hover {
  border-color: rgba(184,151,47,0.3);
}

.menu-card-inner {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #fff;
}

.menu-pdf {
  width: 220%;
  height: 220%;
  border: none;
  pointer-events: none;
  transform: scale(0.5);
  transform-origin: top left;
  margin: -2% 0 0 -5%;
}

.menu-card-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(0deg, var(--card) 0%, transparent 100%);
  pointer-events: none;
}

/* ===== Hours ===== */
.hours-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 1rem;
}

.hours-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.hours-table td {
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.hours-table td:first-child {
  font-weight: 400;
  color: var(--text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.hours-table tr.today {
  border-bottom-color: var(--gold);
}

.hours-table tr.today td:first-child {
  color: var(--gold);
  font-weight: 500;
}

.hours-table tr.today td:last-child {
  color: var(--text);
  font-weight: 500;
}

.hours-special {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--gold-bg);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.hours-special-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hours-table-special tr {
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.hours-table-special tr:last-child {
  border-bottom: none;
}

/* Order card */
.hours-right {
  position: sticky;
  top: 100px;
}

.order-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.order-card-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.order-card-phone {
  display: block;
  font-family: var(--body);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}

.order-card-phone:hover { color: var(--gold); }

.order-card-divider {
  width: 24px; height: 1px;
  background: var(--border);
  margin: 0 auto 1.25rem;
}

.order-card-address {
  font-size: 0.8rem;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* ===== Contact ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-details {
  margin-top: 0.5rem;
}

.contact-row {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.contact-key {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  min-width: 70px;
  flex-shrink: 0;
}

.contact-val {
  font-size: 0.85rem;
  color: var(--dim);
  line-height: 1.5;
}

.contact-val a { transition: color 0.3s; }
.contact-val a:hover { color: var(--gold); }

.contact-right {
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.contact-right iframe {
  display: block;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 70px;
  width: auto;
}

.footer-left p {
  font-size: 0.7rem; color: var(--dim); margin-top: 0.25rem;
}

.footer-center {
  text-align: center; font-size: 0.75rem; color: var(--dim);
}

.footer-center p { margin-bottom: 0.15rem; }
.footer-center a { color: var(--gold); transition: color 0.3s; }
.footer-center a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
}

.footer-bottom a {
  color: var(--gold);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-layout,
  .hours-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu-card-inner { height: 400px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed; top: 0; left: 0; right: 0;
    width: 100%; height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s;
    z-index: 99;
  }

  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; }

  .nav-toggle { z-index: 101; }

  .section { padding: 4.5rem 0; }

  .hero-logo { height: 120px; }

  .footer-inner {
    flex-direction: column; gap: 1.5rem; text-align: center;
  }

  .footer-right { display: none; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column; align-items: center;
  }

  .btn { width: 100%; max-width: 260px; text-align: center; }

  .menu-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .menu-card-inner { height: 280px; }
}
