:root {
  --bg: #fffaf0;
  --surface: #ffffff;
  --surface-soft: #fff4cc;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #f3dfa2;
  --primary: #f4b400;
  --primary-deep: #d89a00;
  --primary-soft: #ffe082;
  --dark: #1f2937;
  --shadow: 0 18px 45px rgba(32, 33, 36, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow { width: min(820px, 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(243, 223, 162, 0.65);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #ffd54f 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(244, 180, 0, 0.30);
  overflow: hidden;
  flex: 0 0 42px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text { font-size: 1.05rem; }

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.menu a {
  color: var(--muted);
  font-weight: 600;
}

.menu a:hover,
.menu a:focus-visible { color: var(--dark); }

.hero,
.page-banner {
  background: linear-gradient(135deg, #fff7d6 0%, #ffe082 55%, #ffd54f 100%);
}

.hero {
  padding: 88px 0 72px;
}

.page-banner {
  padding: 72px 0 46px;
  border-bottom: 1px solid rgba(216, 154, 0, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy-only {
  max-width: 760px;
}

.tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  color: #9a6700;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.15;
  color: #111827;
}

h1 { font-size: clamp(2.3rem, 5vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.18rem; }

.hero-sub {
  font-size: 1.06rem;
  color: #4b5563;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-dark {
  background: #1f2937;
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.18);
}

.btn-light {
  background: rgba(255,255,255,0.75);
  color: #1f2937;
  border: 1px solid rgba(31, 41, 55, 0.08);
}

.section {
  padding: 78px 0;
}

.alt {
  background: linear-gradient(180deg, #fffdf6 0%, #fff7df 100%);
}

.section-head {
  margin-bottom: 26px;
}

.card,
.intro-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 34px 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.benefit-card,
.prose,
.faq-link {
  padding: 26px;
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--surface-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.prose p, .prose li { color: #4b5563; }
.prose p { margin: 0 0 16px; }
.prose h2 { margin-top: 10px; }
.prose ul {
  padding-left: 22px;
  margin: 0 0 18px;
}
.prose li {
  margin-bottom: 10px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-link {
  font-weight: 700;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.faq-link:hover {
  transform: translateY(-2px);
  border-color: #efc84a;
}

.text-link {
  color: var(--primary-deep);
  font-weight: 700;
}

.site-footer {
  background: #1f2937;
  color: #e5e7eb;
  padding: 34px 0;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr;
  gap: 24px;
}

.footer-brand .brand-text,
.footer-brand .brand-mark { color: #fff; }
.site-footer p {
  margin: 0 0 10px;
  color: #d1d5db;
}

@media (max-width: 900px) {
  .hero-grid,
  .feature-grid,
  .benefit-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    gap: 16px;
  }

  .section,
  .hero,
  .page-banner { padding-left: 0; padding-right: 0; }
}
