/* ===== RESET & TOKENS ===== */
:root {
  --bg: #0A0A14;
  --card-bg: #111118;
  --amber: #F5A020;
  --amber-dark: #C47A10;
  --blue: #00B4FF;
  --blue-dim: rgba(0, 180, 255, 0.12);
  --text: #F0EBE1;
  --text-muted: rgba(240, 235, 225, 0.55);
  --border: rgba(245, 160, 32, 0.18);
  --shadow: rgba(0, 0, 0, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 500;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: #0D0D16;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--amber); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 160, 32, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(0, 180, 255, 0.04) 0%, transparent 50%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, var(--amber) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--amber) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.04;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  position: relative;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 36px;
  position: relative;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  max-width: 520px;
  line-height: 1.5;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--amber);
  margin: 0 auto 14px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--amber);
  color: #0A0A14;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--blue);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 100px;
  border: 1.5px solid var(--blue);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { background: rgba(0, 180, 255, 0.1); border-color: var(--blue); }

/* ===== SECTION WRAPPER ===== */
.page-content { padding-top: 64px; }
.section-header {
  text-align: center;
  padding: 72px 24px 48px;
  position: relative;
}
.section-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 24px;
  margin: 24px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 24'%3E%3Cpath d='M40 0 C40 0 50 8 50 14 C50 19 47 22 43 23 C43 24 40 24 40 24 C40 24 37 24 37 23 C33 22 30 19 30 14 C30 8 40 0 40 0Z' fill='%23F5A020' fill-opacity='0.6'/%3E%3C/svg%3E") no-repeat center;
  opacity: 0.8;
}
.section-header .eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== FEATURES (homepage) ===== */
.features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 80px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.feature { text-align: center; flex: 1; min-width: 200px; }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--blue-dim);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.feature h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.feature p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ===== PREVIEW CTA (homepage) ===== */
.preview-cta {
  background: var(--card-bg);
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.preview-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.preview-cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }

/* ===== ORDER CTA (homepage) ===== */
.order-cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(245, 160, 32, 0.08) 0%, transparent 60%), var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.order-cta-inner { max-width: 700px; margin: 0 auto; }
.order-cta-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.order-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.order-cta > .order-cta-inner > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 48px;
}
.order-methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.order-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1.5px solid var(--amber);
  border-radius: 20px;
  padding: 32px 28px;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.order-method:hover {
  background: rgba(245, 160, 32, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 160, 32, 0.15);
}
.order-method-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  background: rgba(245, 160, 32, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.order-method-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.order-method-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 768px) {
  .order-methods { flex-direction: column; align-items: center; }
  .order-method { max-width: 100%; width: 100%; }
}

/* ===== RESERVATION CTA (homepage) ===== */
.reservation-cta {
  padding: 80px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.reservation-cta-inner { max-width: 640px; margin: 0 auto; }
.reservation-cta .form-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 40px;
  border: 1.5px solid var(--amber);
  text-align: left;
}
.reservation-cta .form-card .btn-primary { width: 100%; }

/* ===== MENU GRID ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  padding: 0 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px;
  border-top: 3px solid var(--amber);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--shadow); }
.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
.menu-card p { margin-bottom: 0; }
.menu-card-icon {
  width: 56px; height: 56px;
  background: var(--blue-dim);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.menu-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.menu-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-price { font-size: 1.3rem; font-weight: 700; color: var(--amber); }
.menu-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--blue-dim);
  color: var(--blue);
}

/* ===== INQUIRY FORM ===== */
.form-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.form-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-label .req { color: var(--blue); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--amber); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-error {
  background: rgba(255, 80, 80, 0.08);
  border: 1.5px solid rgba(255, 80, 80, 0.4);
  border-radius: 12px;
  padding: 16px;
  color: #ff7070;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.success-card { text-align: center; padding: 48px; }
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(245, 160, 32, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}
.success-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.success-card p { color: var(--text-muted); line-height: 1.6; }

/* ===== SOURCING PAGE ===== */
.sourcing-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 56px;
  text-align: center;
}
.sourcing-intro p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 28px;
  padding: 0 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.partner-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 36px;
  border-top: 3px solid var(--amber);
  transition: transform 0.2s, box-shadow 0.2s;
}
.partner-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--shadow); }
.partner-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--blue-dim);
  color: var(--blue);
  margin-bottom: 16px;
}
.partner-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.partner-location {
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 14px;
}
.partner-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.closing-statement {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
  text-align: center;
}
.closing-statement blockquote {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  border: none;
  padding: 0;
}
.closing-statement cite {
  display: block;
  margin-top: 16px;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--amber);
  font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-logo img { height: 28px; }
  .nav-links { gap: 20px; }
  .menu-grid { padding: 0 20px 60px; }
  .form-card { padding: 32px 24px; }
  .reservation-cta .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; padding: 0 20px 60px; }
  .features { padding: 60px 20px; gap: 20px; }
}