/* Modern dark theme for catering gold */
:root {
  --bg: #111827;
  --bg-soft: #1f2937;
  --text: #f9fafb;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --leaf: #f59e0b; /* Using accent for leaf in dark mode */
  --card: #1f2937;
  --line: #374151;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.55;
  background: var(--bg);
}

h1, h2, h3, .logo {
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; margin: 0 0 1rem; }
h2 { font-size: clamp(1.45rem, 3.2vw, 2.1rem); margin: 0 0 1.3rem; }
h3 { font-size: 1.08rem; margin: 0.7rem 0; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-accent { background: rgba(255, 255, 255, 0.03); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(17, 24, 39, 0.85);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo { text-decoration: none; color: var(--text); font-size: 1rem; }
.main-nav { display: flex; gap: 1.1rem; }
.main-nav a { text-decoration: none; color: var(--text); font-weight: 600; }
.version-link {
  font-size: .78rem;
  text-decoration: none;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .3rem .6rem;
  white-space: nowrap;
}
.eyebrow { margin: 0 0 .8rem; color: var(--leaf); font-weight: 800; }
.lead { font-size: 1.1rem; max-width: 60ch; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 1.5rem;
  align-items: start;
}

.hero-card {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #111827;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 20px 40px -10px hsla(40, 90%, 50%, 0.25);
}
.hero-card p { margin: .35rem 0; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: .82rem 1.2rem;
  background: var(--accent);
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}

.btn:hover, .btn:focus-visible { 
  background: var(--accent-dark); 
  transform: translateY(-2px) scale(1.02);
}
.btn-small { padding: .55rem .95rem; font-size: .9rem; }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.icon { font-size: 1.5rem; margin: 0; line-height: 1; }

.tabs { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.25rem; }
.tab {
  border: 1px solid var(--line);
  background: #111827;
  border-radius: 999px;
  padding: .5rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}
.tab.is-active { 
  border-color: var(--accent); 
  background: var(--accent);
  color: #111827;
}
.tab-panels { margin-bottom: 1.2rem; }
.tab-panel {
  display: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
}
.tab-panel.is-active { display: block; }
.tab-panel ul { margin: 0; padding-left: 1rem; columns: 2; }

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.5rem;
  padding-left: 1.2rem;
}

.text-center {
  text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.process-step {
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    background: var(--card);
}

.process-step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--accent);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: -2.5rem auto 1rem;
    border: 4px solid var(--bg-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial {
    margin: 0;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.testimonial blockquote {
    margin: 0 0 1rem;
    flex-grow: 1;
    font-style: italic;
    color: #d1d5db;
}

.testimonial p {
    margin: 0;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent);
}

.testimonial-company {
    font-size: 0.9rem;
    opacity: 0.7;
}

.faq-list { display: grid; gap: .75rem; }
details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}
summary { cursor: pointer; font-weight: 700; }

.cta {
  background: linear-gradient(160deg, #0f172a, #000000);
  color: #f8fafc;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.lead-form {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

label { display: grid; gap: .4rem; font-weight: 600; font-size: .95rem; }

input, select, textarea {
  width: 100%;
  border: 1px solid #4b5563;
  border-radius: .5rem;
  padding: .75rem;
  font: inherit;
  background: #111827;
  color: #f9fafc;
}

.small { margin: 0; font-size: .82rem; opacity: .7; }
.form-message { margin: 0; min-height: 1.3rem; font-weight: 700; }

.site-footer {
  background: #000000;
  color: #e2e8f0;
  padding: 2rem 0;
  text-align: center;
}

.footer-grid { display: grid; gap: .5rem; }
.site-footer a { color: #f59e0b; }

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 9999;
}

.mobile-nav-toggle .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
  }
  .main-nav.is-open {
    display: flex;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-grid, .cta-grid, .cards-grid, .steps, .process-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .tab-panel ul { columns: 1; }
  .section { padding: 4rem 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .section, .card, .hero-card, .tab-panel { animation: rise .55s ease-out both; animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  @keyframes rise {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
