<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary-color: #C8A97E;
  --secondary-color: #A88B63;
  --dark-bg: #111111;
  --darker-bg: #0A0A0A;
  --white: #ffffff;
  --text-color: #ffffff;
  --gray-light: rgba(255, 255, 255, 0.2);
  --gray-bg: rgba(255, 255, 255, 0.1);
}

body {
  background: var(--darker-bg);
  color: var(--text-color);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.6;
}

h1, h2, h3, .brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Demo Header Styles */
.demo-header {
  background: var(--dark-bg);
  border-bottom: 1px solid var(--gray-light);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.demo-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.demo-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-nav a:hover {
  color: var(--primary-color);
}

.demo-nav .back-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.demo-nav .back-btn:hover {
  background: var(--gray-bg);
}

.demo-controls {
  display: flex;
  gap: 1rem;
}

.demo-controls .demo-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: var(--gray-bg);
  color: var(--text-color);
  border: 1px solid var(--gray-light);
}

.demo-controls .demo-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.demo-controls .demo-btn:hover {
  opacity: 0.9;
}

/* Site Header Styles */
.site-header {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.site-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.site-logo img {
  height: 45px;
  width: auto;
  margin-bottom: 0.25rem;
}

.brand-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  letter-spacing: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  position: relative;
}

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

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

.nav-link:hover {
  color: var(--primary-color);
}

.reservation-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: white;
  border: 2px solid var(--primary-color);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

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

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  padding: 0.5rem 0 0.5rem 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info i {
  color: var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

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

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

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

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.hero-text {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero p {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
  font-weight: 400;
  letter-spacing: 0.5px;
  max-width: 700px;
}

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

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
  margin-top: 3rem;
  justify-content: center;
}

.cta-btn {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.cta-btn:hover::before {
  transform: translateX(100%);
}

.cta-btn.primary {
  background: var(--primary-color);
  color: var(--white);
  border: none;
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.cta-btn.secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Menu Section */
.menu-section {
  padding: 6rem 2rem;
  background: var(--dark-bg);
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}

.menu-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.menu-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.category-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-item {
  background: var(--darker-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1/1.2;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.menu-item-image {
  width: 100%;
  height: 60%;
  overflow: hidden;
  position: relative;
}

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

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

.menu-item-info {
  padding: 2rem;
  background: var(--darker-bg);
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-item-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-item-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  background: var(--darker-bg);
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.order-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.order-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Reservation Section */
.reservation-section {
  padding: 8rem 2rem;
  background: var(--darker-bg);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.reservation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://restaurantinteriordesign.eu/wp-content/uploads/2018/06/Cold-Drinks-San-Francisco-restaurant.jpg') center/cover no-repeat fixed;
}

.reservation-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75));
}

.reservation-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.reservation-container h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reservation-container &gt; p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.form-group {
  display: grid;
  gap: 0.75rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display', serif;
}

.form-group input,
.form-group select {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
  border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(200, 169, 126, 0.1);
}

.submit-btn {
  grid-column: 1 / -1;
  padding: 1.25rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
}

.submit-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.footer-bottom {
  padding: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1200px) {
  .site-header-content {
    flex-direction: row;
    align-items: center;
  }

  .site-branding {
    justify-content: flex-start;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-bg);
    flex-direction: column;
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    gap: 2rem;
  }

  .site-nav.active {
    right: 0;
  }

  .nav-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 1.2rem;
    width: 100%;
    padding: 0.75rem 0;
  }

  .contact-info {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0 0;
    margin-top: 1rem;
    width: 100%;
    justify-content: flex-start;
  }

  .reservation-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .reservation-form {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .reservation-container h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .site-logo {
    gap: 1rem;
  }

  .site-logo img {
    height: 40px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .brand-tagline {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .menu-categories {
    flex-wrap: wrap;
  }

  .category-btn {
    width: calc(50% - 0.75rem);
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-item {
    aspect-ratio: auto;
  }
  
  .menu-item-image {
    height: 300px;
  }
  
  .menu-item-info {
    height: auto;
  }
  
  .menu-item-info h3 {
    font-size: 1.5rem;
  }
  
  .menu-item-info p {
    font-size: 1rem;
  }

  .reservation-section {
    padding: 6rem 1rem;
  }

  .reservation-container h2 {
    font-size: 2rem;
  }

  .reservation-container &gt; p {
    font-size: 1.1rem;
  }
}
</pre></body></html>