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

:root {
  --color-bg: #1a1612;
  --color-bg-light: #252019;
  --color-cream: #f5e6d3;
  --color-cream-dark: #d4c4b0;
  --color-copper: #c47f5e;
  --color-copper-light: #d9a07a;
  --color-espresso: #0d0a08;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

/* Grain & Noise */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  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");
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.02;
  background: radial-gradient(circle at 50% 50%, transparent 0%, var(--color-espresso) 100%);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  background: linear-gradient(to bottom, rgba(26, 22, 18, 0.98), transparent);
}

.header-decor {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-copper), transparent);
  opacity: 0.3;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  color: var(--color-copper);
  font-size: 1.2rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--color-cream);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-cream-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-copper);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-copper);
  color: var(--color-copper);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--color-copper);
  color: var(--color-bg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-cream);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu a {
  color: var(--color-cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--color-copper);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(196, 127, 94, 0.15) 0%, transparent 60%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(196, 127, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 127, 94, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  max-width: 560px;
}

.hero-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-copper);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.title-line {
  display: block;
  overflow: hidden;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-cream-dark);
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s ease;
}

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

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

.btn-secondary {
  border: 1px solid var(--color-cream-dark);
  color: var(--color-cream);
}

.btn-secondary:hover {
  border-color: var(--color-cream);
  background: rgba(245, 230, 211, 0.1);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 2rem;
}

.hero-image-wrapper {
  position: relative;
  width: 560px;
  height: 380px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-copper);
  opacity: 0.4;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -30px;
  background: var(--color-bg-light);
  padding: 1.2rem;
  border: 1px solid rgba(196, 127, 94, 0.3);
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-copper);
  line-height: 1;
}

.badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream-dark);
}

/* Sections */
section {
  padding: 5rem 2rem;
}

.section-tag {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-copper);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--color-copper);
}

/* Story */
.story {
  background: var(--color-bg-light);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-visual {
  position: relative;
  height: 500px;
}

.story-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 350px;
}

.story-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 280px;
}

.story-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-decor {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 200px;
  height: 200px;
  border: 1px solid var(--color-copper);
  opacity: 0.2;
  transform: translate(-50%, -50%) rotate(45deg);
}

.story-content p {
  color: var(--color-cream-dark);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 127, 94, 0.2);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-copper);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream-dark);
}

/* Origin */
.origin {
  background: var(--color-espresso);
}

.origin-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-copper);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: var(--color-cream-dark);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.taste-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(196, 127, 94, 0.1);
  border: 1px solid rgba(196, 127, 94, 0.3);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-copper);
}

/* Menu */
.menu {
  background: var(--color-bg);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--color-bg-light);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
}

.menu-img {
  height: 160px;
  overflow: hidden;
}

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

.menu-card:hover .menu-img img {
  transform: scale(1.1);
}

.menu-info {
  padding: 1.5rem;
  position: relative;
}

.menu-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-copper);
  opacity: 0.3;
}

.menu-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.menu-info p {
  font-size: 0.85rem;
  color: var(--color-cream-dark);
  margin-bottom: 1rem;
}

.menu-price {
  font-weight: 600;
  color: var(--color-copper);
}

/* Reserve */
.reserve {
  background: linear-gradient(to bottom, var(--color-bg) 0%, var(--color-bg-light) 100%);
  text-align: center;
}

.reserve-content .section-title {
  text-align: center;
}

.reserve-content > p {
  color: var(--color-cream-dark);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.reserve-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

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

.reserve-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-copper);
  margin-bottom: 0.5rem;
}

.reserve-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background: var(--color-espresso);
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-icon,
.footer-brand .logo-text {
  display: inline;
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--color-cream-dark);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-cream-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social a {
  color: var(--color-cream-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-copper);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 127, 94, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-cream-dark);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 1rem;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    padding-right: 0;
  }

  .hero-image-wrapper {
    width: 420px;
    height: 320px;
  }

  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    padding: 1rem;
  }

  .badge-number {
    font-size: 2rem;
  }

  .badge-label {
    font-size: 0.6rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-visual {
    height: 320px;
  }

  .story-img-1 {
    width: 200px;
    height: 250px;
  }

  .story-img-2 {
    width: 160px;
    height: 200px;
  }

  .origin-timeline {
    grid-template-columns: 1fr;
  }

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

  .menu-img {
    height: 140px;
  }

  .menu-info {
    padding: 1rem;
  }

  .menu-info h3 {
    font-size: 1.2rem;
  }

  .reserve-details {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 1rem 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-image-wrapper {
    width: 340px;
    height: 260px;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    padding-right: 0;
  }

  section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .menu-img {
    height: 180px;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  /* Header mobile */
  .header {
    padding: 1rem;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(196, 127, 94, 0.2);
  }

  .nav {
    position: relative;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-menu {
    display: flex;
  }
}
