:root {
  --ink: #171717;
  --muted: #5d626b;
  --line: #e6e3dc;
  --paper: #fffdf8;
  --soft: #f7f3ea;
  --honey: #f4a100;
  --honey-dark: #bd7900;
  --amber: #ffcc4d;
  --charcoal: #303238;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 227, 220, 0.85);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand-bee { width: 44px; height: 50px; object-fit: contain; flex: 0 0 auto; }
.brand-word { width: 156px; height: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; color: var(--charcoal); }
.site-nav a { text-decoration: none; white-space: nowrap; }
.site-nav a:hover { color: var(--honey-dark); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white !important;
  font-weight: 700;
}
.nav-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px) clamp(34px, 6vw, 70px);
  min-height: calc(100svh - 76px);
  background:
    linear-gradient(135deg, rgba(244, 161, 0, 0.11), transparent 38%),
    radial-gradient(circle at 96% 8%, rgba(255, 204, 77, 0.25), transparent 26%),
    var(--paper);
  overflow: hidden;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--honey-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
h1, h2, h3, h4, p { overflow-wrap: break-word; hyphens: auto; }
.hero-copy,
.hero-visual,
.section-heading,
.product-body,
.documents-card > *,
.contact-panel > * { min-width: 0; }
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 12vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}
.hero h2 {
  margin: 18px 0 0;
  max-width: 820px;
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}
.hero h2 span { display: inline; }
.hero-lead {
  margin-top: 24px;
  font-size: clamp(18px, 2.1vw, 24px);
  color: var(--charcoal);
  max-width: 760px;
}
.hero-copy p:not(.eyebrow):not(.hero-lead) { color: var(--muted); max-width: 720px; }
.hero-actions, .contact-actions, .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
}
.button-primary { background: var(--honey); color: #18150c; border-color: var(--honey); }
.button-secondary { background: var(--ink); color: white; border-color: var(--ink); }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.hero-panel {
  position: relative;
  padding: clamp(18px, 3vw, 32px);
  border-radius: 8px;
  background: linear-gradient(180deg, white, #f5f1e7);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-panel::before, .hero-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 156px;
  opacity: 0.16;
  background:
    radial-gradient(circle farthest-side at 50% 50%, transparent 0 54%, var(--honey) 55% 62%, transparent 63%) 0 0/52px 45px;
}
.hero-panel::before { left: -50px; bottom: -36px; }
.hero-panel::after { right: -46px; top: -36px; }
.hero-product { position: relative; z-index: 1; width: min(100%, 600px); margin: 0 auto; border-radius: 4px; }
.hero-note {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-left: 4px solid var(--honey);
  background: rgba(255,255,255,0.76);
}
.hero-note span { font-weight: 900; }
.hero-note strong { color: var(--muted); font-size: 14px; }

.section { padding: clamp(52px, 7vw, 96px) clamp(18px, 5vw, 72px); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading--wide { max-width: 980px; }
.section-heading h2, .documents-card h2, .contact-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  color: var(--charcoal);
}
.intro-grid p {
  margin: 0;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.trust-strip div { padding: 22px; background: var(--charcoal); color: white; }
.trust-strip strong { display: block; font-size: 26px; color: var(--amber); }
.trust-strip span { color: rgba(255,255,255,0.78); }

.products { background: #f4f0e6; }
.featured-callout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(244,161,0,0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8df, white);
}
.featured-callout h3 { margin: 8px 0; font-size: 28px; }
.featured-callout p { max-width: 780px; margin: 0; color: var(--muted); }
.product-list { display: grid; gap: 18px; }
.product-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding: 24px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}
.product-card--featured { border-color: rgba(244,161,0,0.68); box-shadow: 0 12px 34px rgba(189, 121, 0, 0.10); }
.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: #f8f8f6;
  border-radius: 8px;
  padding: 12px;
}
.product-media img { max-height: 240px; object-fit: contain; }
.product-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff2bf;
  color: #7a4d00;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-body h3 { margin: 10px 0 2px; font-size: 30px; }
.product-type { margin: 0 0 12px; font-weight: 800; color: var(--charcoal); }
.product-body p { color: var(--muted); }
.product-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.product-columns h4 { margin: 0 0 8px; }
.product-columns ul { margin: 0; padding-left: 18px; color: var(--muted); }
.product-actions { margin-top: 18px; align-items: flex-start; color: var(--muted); font-size: 14px; }
.text-link { color: var(--honey-dark); font-weight: 900; text-decoration: none; }

.audience-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.audience-grid article, .why-grid div {
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.audience-grid h3, .why-grid h3 { margin: 0 0 10px; font-size: 22px; }
.audience-grid p, .why-grid p { margin: 0; color: var(--muted); }
.why { background: var(--charcoal); color: white; }
.why .eyebrow { color: var(--amber); }
.why-grid div { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.why-grid p { color: rgba(255,255,255,0.75); }

.documents-card, .contact-panel {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.45fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.documents-card p, .contact-panel p { color: var(--muted); }
.documents-card ul { margin: 0; padding-left: 18px; color: var(--charcoal); font-weight: 700; }
.contact { background: #f8f5ed; }
.contact-panel { grid-template-columns: 1fr auto; }
.contact-panel a { font-weight: 800; text-decoration: none; }
.contact-actions { margin: 0; justify-content: flex-end; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #101114;
  color: white;
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 46px; height: 52px; object-fit: contain; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span, .site-footer p { color: rgba(255,255,255,0.72); margin: 0 0 6px; }
.site-footer a { color: white; text-decoration: none; }

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 1px solid var(--line);
    background: white;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 800;
  }
  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .hero { grid-template-columns: minmax(0, 1fr); min-height: auto; overflow: hidden; }
  .hero-visual { order: -1; }
  .hero-panel { width: 100%; max-width: 640px; margin: 0 auto; }
  .intro-grid, .trust-strip, .audience-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .product-card { grid-template-columns: 220px minmax(0, 1fr); }
  .documents-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; min-height: 68px; }
  .brand-bee { width: 36px; height: 42px; }
  .brand-word { width: 128px; }
  .site-nav { top: 70px; left: 12px; right: 12px; }
  main, .hero, .section { width: 100vw; max-width: 100vw; overflow: hidden; }
  .hero { padding-top: 28px; }
  .hero > *,
  .section > *,
  .site-footer > * {
    width: 100%;
    max-width: 100%;
  }
  .intro-grid,
  .trust-strip,
  .audience-grid,
  .why-grid,
  .product-list,
  .documents-card,
  .contact-panel {
    width: 100%;
    max-width: 100%;
  }
  .hero h1 { font-size: clamp(44px, 17vw, 66px); }
  .hero h2 { font-size: clamp(24px, 8vw, 34px); }
  .hero h2 span { display: block; }
  .hero-copy { width: 100%; max-width: 100%; }
  .hero-product { width: 100%; max-width: 100%; }
  .hero .eyebrow { font-size: 11px; letter-spacing: 0.04em; }
  .hero-actions .button, .contact-actions .button { width: 100%; }
  .intro-grid, .trust-strip, .audience-grid, .why-grid, .product-columns { grid-template-columns: 1fr; }
  .featured-callout { display: grid; }
  .product-card { grid-template-columns: 1fr; padding: 18px; }
  .product-media { min-height: 190px; }
  .product-media img { max-height: 220px; }
  .documents-card, .contact-panel { grid-template-columns: 1fr; padding: 22px; }
  .contact-actions { justify-content: stretch; }
  .site-footer { display: grid; }
}

@media (max-width: 390px) {
  .brand-word { width: 112px; }
  .hero h1 { font-size: 44px; }
  .button { padding: 12px 14px; }
  .section { padding-left: 14px; padding-right: 14px; }
}
