:root {
  --bg: #F8FAFC;  
  --surface: #FFFFFF;
  --surface-soft: #F1F5F9;
  --text: #1E293B;
  --muted: #94a3b8;
  --accent: #0EA5E9;
  --accent-strong: #0284C7;
  --border: #E2E8F0;
  --light: #f5f7fa;
  --secondary: #1e3a8a;
  --primary: #EA580C;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #222;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 16% 20%, rgba(247, 201, 72, 0.12), transparent 12%), radial-gradient(circle at 84% 28%, rgba(0, 245, 212, 0.12), transparent 12%);
  pointer-events: none;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffffff20);
  color: var(--bg);
  font-weight: 800;
  font-size: 1.4rem;
}

.brand-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  margin: 0 0 0.35rem;
  color: var(--muted);
}

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

.cart-button {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: #16a34a;
  color: white;
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  margin-left: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #070b14;
  font-weight: 700;
  font-size: 0.95rem;
}

.toast-message {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  background: rgba(7, 11, 20, 0.95);
  border: 1px solid rgba(125, 249, 255, 0.18);
  border-radius: 999px;
  padding: 1rem 1.4rem;
  color: #f8fafc;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-message.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hidden {
  display: none;
}

.checkout-page {
  padding: 2rem;
}

.checkout-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 1fr);
}

.checkout-summary-card,
.checkout-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
}

.checkout-card-header {
  margin-bottom: 1.5rem;
}

.cart-summary {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
}

.checkout-form .form-row {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.checkout-button {
  padding: 1rem 1.2rem;
}

.cart-item {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cart-item-total {
  color: var(--accent-strong);
  font-weight: 700;
}

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

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #070b14;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.button-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  min-height: calc(100vh - 4rem);
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin: 0.4rem 0 1.2rem;
}

.hero-copy {
  max-width: 42rem;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.7rem;
}

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

.hero-image-wrap {
  position: relative;
  min-height: 420px;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  /* overlay to tint the video and provide the subtle gradient */
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(7,11,20,0.12));
  box-shadow: 0 40px 120px rgba(0,0,0,0.45);
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.2s linear;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  z-index: 0;
}

.hero-image {
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

/* Floating reserve button */
.floating-reserve {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 250;
  background: var(--accent);
  color: #070b14;
  border: none;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(125, 249, 255, 0.12);
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.floating-reserve:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(125, 249, 255, 0.16);
}

.floating-reserve.pulse {
  transform: scale(0.98);
  transition: transform 0.12s ease;
}

@media (max-width: 720px) {
  .floating-reserve {
    right: 16px;
    bottom: 16px;
    padding: 0.7rem 0.9rem;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
}

.feature-card h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.menu-preview {
  padding: 2rem;
}

.section-header {
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.menu-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
}

.menu-category {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.menu-card h3 {
  margin: 0 0 0.85rem;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: 2rem;
}

.story-copy h2 {
  margin-bottom: 1rem;
}

.story-highlights {
  display: grid;
  gap: 1rem;
}

.testimonials-section {
  padding: 2rem;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.testimonial-role {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-stars {
  margin: 0;
  color: var(--accent-strong);
  letter-spacing: 0.1em;
}

.testimonial-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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


.story-highlights div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
}

.story-highlights strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-strong);
}

.story-highlights p {
  margin: 0;
  color: var(--muted);
}

.reserve-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 2rem;
  margin: 0 2rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 28px;
}

.reserve-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.reserve-form {
  display: grid;
  gap: 1rem;
}

.reserve-form .form-row {
  display: grid;
  gap: 0.5rem;
}

.reserve-form input,
.reserve-form button {
  width: 100%;
}

.reserve-form input {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.reserve-form button {
  padding: 0.95rem 1rem;
}

.reservation-message {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.hidden {
  display: none;
}

.reserve-section h2 {
  margin-top: 0.35rem;
}

.accent {
  color: var(--accent);
}

.products-section {
  padding: 2rem;
}

.info-section {
  padding: 2rem;
  display: grid;
  gap: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
}

.checkout-card h2 {
  margin: 0;
}

.checkout-button {
  width: fit-content;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
}

.contact-card h3,
.contact-card p {
  margin: 0;
}

.thank-you-card {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(125, 249, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.contact-small {
  color: var(--muted);
  margin-top: 0.5rem;
}

@media (max-width: 1080px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .thank-you-card {
    grid-column: span 1;
  }
}

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

.product-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 15px;
  transition: all 0.3s ease;
}

.product-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(125, 249, 255, 0.1);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.product-price {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 1.4rem;
  font-weight: 700;
}

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

.product-actions .button {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.product-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100;
  opacity: 1;
  pointer-events: auto;
}

.product-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-card {
  width: min(980px, 100%);
  background: rgba(10, 16, 28, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.modal-image-wrap {
  min-height: 100%;
  max-height: 620px;
  overflow: hidden;
}

.modal-image-wrap .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 2rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.modal-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-button.active,
.filter-button:hover {
  background: rgba(125, 249, 255, 0.14);
  border-color: var(--accent);
  color: var(--accent);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 20, 0.85);
  z-index: 150;
  display: grid;
  place-items: end center;
  padding: 1.5rem;
  overflow: auto;
}

.cart-drawer.hidden {
  display: none;
}

.cart-drawer-panel {
  width: min(480px, 100%);
  max-height: calc(100vh - 3rem);
  background: rgba(10, 16, 28, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.45rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.cart-items {
  display: grid;
  gap: 1rem;
  overflow: auto;
  max-height: calc(100vh - 20rem);
  padding-right: 0.5rem;
}

.cart-item {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-details {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cart-item-details strong {
  font-size: 1rem;
}

.cart-item-details span {
  color: var(--muted);
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cart-item-total {
  color: var(--accent-strong);
  font-weight: 700;
}

.empty-cart {
  color: var(--muted);
  padding: 1rem;
  text-align: center;
}

.cart-drawer-footer {
  display: grid;
  gap: 1rem;
}

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

@media (max-width: 860px) {
  .modal-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .product-modal {
    padding: 1rem;
  }
}

@media (max-width: 1080px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 1080px) {
  .hero,
  .story,
  .feature-grid,
  .menu-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image-wrap {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .reserve-section {
    flex-direction: column;
    text-align: left;
  }
  .hero-video {
    display: none;
  }
}
