/* Kitchup pages - JEBE brand styleguide (branding/brand-styleguide.md) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #F5F4EF;
  --surface: #ECEBE2;
  --line: #E2E0D6;
  --accent: #1F6B4A;
  --text: #20261F;
  --text-muted: #565D54;
  --text-on-accent: #F5F4EF;
  --font: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  padding: 48px 20px;
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.subtitle,
.last-updated {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-muted);
}

ul {
  margin-bottom: 12px;
  padding-left: 24px;
}

li {
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--text-muted);
}

li strong {
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.contact-btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text-on-accent);
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 12px;
  transition: background-color 0.2s;
}

.contact-btn:hover {
  background-color: #185A3E;
  text-decoration: none;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  display: none;
  margin-top: 8px;
  font-size: 16px;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.links {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.links a {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
}

.page-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-muted);
}

.page-footer a {
  font-weight: 600;
}
