/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #EDE7DE;
  background: #14100D;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #14100D;
  --bg-alt: #1E1712;
  --ink: #EDE7DE;
  --ink-soft: #BBAF9E;
  --stone: #6E6156;
  --accent: #C9963E;
  --accent-deep: #7A2E1E;
  --line: rgba(237, 231, 222, 0.12);
}

/* ===== NAVBAR (transparent, floats over hero) ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(20, 16, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--ink);
}

.nav-links {
  display: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--ink);
  transition: color 0.2s ease;
}

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

.btn-reserve {
  display: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn-reserve:hover {
  background: var(--accent);
  color: var(--bg);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links.mobile-active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  gap: 18px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 32px;
  }
  .btn-reserve {
    display: block;
  }
  .hamburger {
    display: none;
  }
}

/* ===== HERO (full-bleed background) ===== */
.hero-full {
  position: relative;
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20,16,13,0.5) 0%, rgba(20,16,13,0.75) 100%);
}

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

.eyebrow-light {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: rgba(237, 231, 222, 0.85);
  margin: 0 auto 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (min-width: 900px) {
  .hero-content h1 {
    font-size: 72px;
  }
  .hero-content p {
    font-size: 18px;
  }
}

/* ===== SHARED SECTION STYLES ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.section-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--ink);
}

/* ===== SIGNATURE DISHES (editorial alternating rows) ===== */
.signature {
  background: var(--bg);
}

.dish-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dish-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.dish-price {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
}

.dish-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.dish-text p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 400px;
}

.link-more {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

@media (min-width: 900px) {
  .dish-row {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .dish-row.reverse {
    flex-direction: row-reverse;
  }
  .dish-image,
  .dish-text {
    flex: 1;
  }
}


/* ===== IMAGE BREAK (mid-page full-bleed moment) ===== */
.image-break {
  position: relative;
  min-height: 55vh;
  background: url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?w=1600&q=80') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 16, 13, 0.55);
}

.image-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.image-break-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-top: 12px;
}

@media (min-width: 900px) {
  .image-break {
    min-height: 65vh;
  }
  .image-break-content h2 {
    font-size: 46px;
  }
}


/* ===== ABOUT (editorial, pull-quote style) ===== */
.about-editorial {
  background: var(--bg-alt);
}

.about-editorial-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-editorial-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

.about-editorial-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--accent);
  margin: 16px 0 24px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

.about-editorial-text p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 420px;
}

@media (min-width: 900px) {
  .about-editorial-grid {
    flex-direction: row;
    align-items: center;
    gap: 70px;
  }
  .about-editorial-image,
  .about-editorial-text {
    flex: 1;
  }
  .about-editorial-text blockquote {
    font-size: 32px;
  }
}

/* ===== TESTIMONIAL FEATURE (single large quote) ===== */
.testimonial-feature {
  background: var(--bg);
}

.testimonial-content {
  text-align: center;
  max-width: 800px;
}

.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin: 20px 0 24px;
}

.quote-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.quote-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
}

@media (min-width: 900px) {
  .big-quote {
    font-size: 34px;
  }
}

/* ===== FINAL CTA (full-bleed) ===== */
.final-cta {
  position: relative;
  min-height: 60vh;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 16, 13, 0.7);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.final-cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 16px 0 32px;
}

.final-cta-content .btn-primary {
  display: inline-block;
}

/* ===== FOOTER ===== */
.footer {
  background: #0E0B09;
  color: rgba(237, 231, 222, 0.6);
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 0 0 40px;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links a,
.footer-contact a {
  display: block;
  font-size: 14px;
  color: rgba(237, 231, 222, 0.6);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer-social i {
  font-size: 18px;
}