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

:root {
  --orange: #ff6b00;
  --orange-light: #ff8c38;
  --orange-dark: #cc5500;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #f5f5f5;
  --text: #444444;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text);
}

/* NAV */
nav {
  background: var(--dark);
  padding: 16px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
}

.logo span {
  color: var(--white);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav ul a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul a:hover,
nav ul a.active {
  color: var(--orange);
}

.nav-btn {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600 !important;
}

.nav-btn:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--dark) 50%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 100px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--orange);
}

.hero-text p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

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

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.hero-image {
  font-size: 12rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* FEATURES */
.features {
  padding: 80px 60px;
  background: var(--gray);
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-title span {
  color: var(--orange);
}

.section-sub {
  color: #888;
  margin-bottom: 50px;
  font-size: 1rem;
}

.cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  width: 240px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s;
}

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

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
}

/* MENU PAGE */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--orange-dark));
  color: var(--white);
  text-align: center;
  padding: 80px 60px;
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.page-hero p {
  color: #ccc;
  font-size: 1rem;
}

.menu-section {
  padding: 70px 60px;
  background: var(--gray);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.menu-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

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

.menu-card-img {
  height: 160px;
  width: 100%;
  display: block;
  object-fit: cover;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-body h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.menu-card-body p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 14px;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
}

.add-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.add-btn:hover {
  background: var(--orange-dark);
}

/* LIVE MENU */
.menu-hero { background: #1a1a1a; padding: 72px 24px; }
.menu-hero h1 { max-width: 680px; margin: 0 auto 12px; }
.menu-hero p:last-child { max-width: 580px; margin: auto; }
.eyebrow { color: var(--orange); font-size: .76rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px; }
.menu-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; max-width: 1220px; margin: 0 auto; }
.menu-section { min-height: 70vh; }
.menu-grid { max-width: 1220px; margin-left: auto; margin-right: auto; }
.menu-card { border-radius: 8px; }
.menu-card:hover { transform: translateY(-4px); }
.meal-category { color: var(--orange) !important; font-size: .7rem !important; font-weight: 700; letter-spacing: .9px; text-transform: uppercase; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { background: transparent; border: 1px solid #d5d5d5; border-radius: 4px; color: var(--dark); cursor: pointer; font: inherit; font-size: .86rem; padding: 9px 14px; }
.filter-btn.active, .filter-btn:hover { background: var(--dark); border-color: var(--dark); color: white; }
.cart-trigger { align-items: center; background: var(--orange); border: 0; border-radius: 4px; color: white; cursor: pointer; display: flex; font: inherit; font-weight: 700; gap: 8px; padding: 9px 12px; }
.cart-count { align-items: center; background: white; border-radius: 50%; color: var(--dark); display: inline-flex; font-size: .75rem; height: 20px; justify-content: center; min-width: 20px; }
.cart-panel { background: white; bottom: 0; box-shadow: -8px 0 24px rgba(0,0,0,.16); display: flex; flex-direction: column; max-width: 430px; padding: 26px; position: fixed; right: 0; top: 0; transform: translateX(105%); transition: transform .25s ease; width: 100%; z-index: 120; }
.cart-panel.is-open { transform: translateX(0); }
.drawer-backdrop { background: rgba(0,0,0,.45); inset: 0; opacity: 0; pointer-events: none; position: fixed; transition: opacity .25s ease; z-index: 110; }
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cart-header { align-items: start; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; padding-bottom: 18px; }
.cart-header h2, .checkout-card h2 { color: var(--dark); font-size: 1.55rem; }
.icon-btn { background: transparent; border: 0; color: var(--dark); cursor: pointer; font-size: 1.4rem; height: 34px; line-height: 1; width: 34px; }
.cart-items { flex: 1; overflow: auto; padding: 16px 0; }
.cart-empty { color: #777; line-height: 1.6; padding: 36px 0; }
.cart-item { align-items: flex-start; border-bottom: 1px solid #eee; display: grid; gap: 10px; grid-template-columns: 66px 1fr auto; padding: 12px 0; }
.cart-item img { border-radius: 4px; height: 56px; object-fit: cover; width: 66px; }
.cart-item strong { color: var(--dark); font-size: .88rem; }
.cart-item span { color: #777; display: block; font-size: .8rem; margin: 4px 0; }
.quantity-controls { align-items: center; display: flex; gap: 8px; }
.quantity-controls button { background: #f1f1f1; border: 0; border-radius: 3px; cursor: pointer; font-size: 1rem; height: 23px; width: 23px; }
.quantity-controls b { font-size: .82rem; min-width: 12px; text-align: center; }
.cart-summary { border-top: 1px solid #eee; padding-top: 18px; }
.cart-summary > div { display: flex; justify-content: space-between; color: var(--dark); font-size: 1.05rem; }
.cart-summary p, .form-note { color: #777; font-size: .8rem; line-height: 1.5; margin: 9px 0 16px; }
.checkout-btn { background: var(--orange); border: 0; border-radius: 4px; color: white; cursor: pointer; font: inherit; font-weight: 700; padding: 13px 16px; width: 100%; }
.checkout-btn:disabled { background: #c4c4c4; cursor: not-allowed; }
.checkout-modal { align-items: center; background: rgba(0,0,0,.52); display: none; inset: 0; justify-content: center; padding: 24px; position: fixed; z-index: 130; }
.checkout-modal.is-open { display: flex; }
.checkout-card { background: white; border-radius: 8px; max-height: calc(100vh - 48px); max-width: 540px; overflow: auto; padding: 32px; position: relative; width: 100%; }
.checkout-close { position: absolute; right: 18px; top: 16px; }
.payment-details { background: #fff3e9; border-left: 4px solid var(--orange); color: var(--dark); margin: 20px 0; padding: 16px; }
.payment-details p { font-size: .85rem; margin-bottom: 8px; }
.payment-details strong { display: block; font-size: 1.5rem; letter-spacing: 1px; }
.payment-details span { display: block; font-size: .87rem; font-weight: 600; margin-top: 3px; }
.checkout-card textarea { min-height: 80px; }
.checkout-card small { color: #777; display: block; font-size: .75rem; margin-top: 5px; }
.order-success { padding: 18px 0; }
.order-success h3 { color: var(--dark); margin-bottom: 8px; }
.order-success p { color: #666; line-height: 1.6; }

/* ABOUT PAGE */
.about-page-intro { background: #1a1a1a; color: white; padding: 86px 60px 92px; text-align: center; }
.about-page-intro h1 { font-size: 3.2rem; line-height: 1.12; margin: 0 auto 16px; max-width: 690px; }
.about-page-intro h1 span, .founder-copy h2 span, .about-values h2 span { color: var(--orange); }
.about-page-intro > p:last-child { color: #d1d1d1; line-height: 1.65; margin: auto; max-width: 590px; }
.founder-section { align-items: center; background: white; display: grid; gap: clamp(38px, 7vw, 110px); grid-template-columns: minmax(280px, .85fr) minmax(300px, 1fr); margin: 0 auto; max-width: 1180px; padding: 92px 0; }
.founder-image-wrap { margin-left: 26px; max-width: 400px; position: relative; }
.founder-image-wrap::before { background: var(--orange); content: ''; inset: 22px -22px -22px 22px; position: absolute; z-index: 0; }
.founder-image { display: block; height: 480px; object-fit: cover; object-position: center top; position: relative; width: 100%; z-index: 1; }
.founder-label { background: #fff; bottom: -24px; box-shadow: 0 7px 24px rgba(0,0,0,.12); display: flex; flex-direction: column; gap: 3px; left: -20px; padding: 14px 18px; position: absolute; z-index: 2; }
.founder-label strong { color: var(--dark); font-size: 1rem; }
.founder-label span { color: #777; font-size: .82rem; }
.founder-copy { padding-right: 30px; }
.founder-copy h2, .about-values h2 { color: var(--dark); font-size: 2.35rem; line-height: 1.18; margin-bottom: 20px; }
.founder-copy > p:not(.eyebrow) { color: #5d5d5d; line-height: 1.75; margin-bottom: 14px; }
.linkedin-link { align-items: center; color: var(--dark); display: inline-flex; font-weight: 700; gap: 9px; margin-top: 13px; text-decoration: none; }
.linkedin-link:hover { color: var(--orange); }
.linkedin-link span { background: var(--orange); color: white; display: inline-grid; height: 26px; place-items: center; width: 26px; }
.about-values { background: #f2f2f0; padding: 82px max(60px, calc((100% - 1180px) / 2)); }
.value-intro { max-width: 580px; }
.value-grid { display: grid; gap: 1px; grid-template-columns: repeat(3, 1fr); margin-top: 42px; }
.value-item { background: white; min-height: 190px; padding: 30px; }
.value-item h3 { color: var(--dark); font-size: 1.1rem; margin-bottom: 12px; }
.value-item p { color: #666; font-size: .92rem; line-height: 1.7; }
.about-cta { background: white; padding: 82px 24px; text-align: center; }
.about-cta h2 { color: var(--dark); font-size: 2.2rem; margin-bottom: 23px; }

/* ABOUT PAGE */
.about-section {
  padding: 80px 60px;
  display: flex;
  gap: 60px;
  align-items: center;
  background: var(--white);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-text h2 span {
  color: var(--orange);
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-emoji {
  flex: 1;
  text-align: center;
  font-size: 10rem;
}

.stats {
  background: var(--dark);
  padding: 60px;
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat h2 {
  font-size: 2.8rem;
  color: var(--orange);
  font-weight: 800;
}

.stat p {
  color: #ccc;
  margin-top: 6px;
}

.team-section {
  padding: 80px 60px;
  background: var(--gray);
  text-align: center;
}

.team-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  width: 200px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.team-avatar {
  font-size: 4rem;
  margin-bottom: 12px;
}

.team-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--orange);
}

/* CONTACT PAGE */
.contact-section {
  padding: 80px 60px;
  background: var(--gray);
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info h2 span {
  color: var(--orange);
}

.contact-info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item-icon {
  font-size: 1.6rem;
  background: var(--orange);
  padding: 10px;
  border-radius: 10px;
}

.contact-item-text h4 {
  font-size: 0.9rem;
  color: var(--dark);
}

.contact-item-text p {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

.contact-form {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 50px 60px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #999;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav ul { display: none; }
  .hero { flex-direction: column; padding: 60px 24px; text-align: center; }
  .hero-image { font-size: 6rem; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-btns { justify-content: center; }
  .features, .menu-section, .about-section, .team-section, .contact-section { padding: 50px 24px; }
  .about-section { flex-direction: column; }
  .contact-section { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { padding: 40px 24px; }
  .menu-heading { align-items: flex-start; flex-direction: column; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
  .cart-trigger { margin-left: auto; }
  .about-page-intro { padding: 68px 24px 72px; }
  .about-page-intro h1 { font-size: 2.45rem; }
  .founder-section { grid-template-columns: 1fr; padding: 62px 24px 76px; }
  .founder-image-wrap { margin: 0 auto; width: min(100% - 18px, 390px); }
  .founder-image { height: 430px; }
  .founder-copy { padding: 0; }
  .founder-copy h2, .about-values h2 { font-size: 2rem; }
  .about-values { padding: 60px 24px; }
  .value-grid { grid-template-columns: 1fr; }
}
