﻿:root {
  --ink: #11221f;
  --muted: #5d6d68;
  --cream: #fbf5e8;
  --paper: #fffaf0;
  --moss: #24594d;
  --leaf: #2f7d5a;
  --lime: #cce66d;
  --gold: #f1b84b;
  --clay: #d96b45;
  --line: rgba(17, 34, 31, 0.14);
  --shadow: 0 24px 70px rgba(17, 34, 31, 0.14);
}
@font-face {
  font-family: "Google Sans Flex";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src:
    url("https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-700-normal.woff2") format("woff2"),
    url("https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-700-normal.woff") format("woff");
}

@font-face {
  font-family: "Google Sans Flex";
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src:
    url("https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-800-normal.woff2") format("woff2"),
    url("https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-800-normal.woff") format("woff");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(204, 230, 109, 0.42), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(241, 184, 75, 0.28), transparent 24rem),
    linear-gradient(180deg, #fffaf0 0%, #f6f0e1 52%, #eef5e8 100%);
  line-height: 1.6;
}

a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--ink);
  color: white;
  padding: .8rem 1rem;
  z-index: 10;
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 245, 232, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.brand { display: flex; align-items: center; text-decoration: none; min-width: 0; }
.brand-logo {
  display: block;
  width: clamp(190px, 22vw, 310px);
  height: auto;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 1.1rem; font-weight: 700; }
.nav-links a { text-decoration: none; color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: .75rem 1rem;
  border-radius: 999px;
}
.nav-toggle { display: none; }

.hero {
  padding: 6rem 1.25rem 4rem;
  overflow: hidden;
  scroll-margin-top: 92px;
}
.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 2rem;
  align-items: center;
}
.brand-slogan {
  display: inline-flex;
  margin: 0 0 .7rem;
  padding: .5rem .8rem;
  border: 1px solid rgba(255, 91, 0, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .54);
  color: #ff5b00;
  font-weight: 900;
  letter-spacing: .02em;
}
.eyebrow {
  color: var(--leaf);
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1, h2, h3 {
  font-family: "Fraunces", serif;
  line-height: 1.02;
  margin: 0;
}
h1 { font-family: "Google Sans Flex", "Manrope", sans-serif; font-size: 63px; letter-spacing: -.045em; max-width: 930px; font-weight: 800; }
h2 { font-family: "Google Sans Flex", "Manrope", sans-serif; font-size: clamp(2.1rem, 4vw, 4rem); letter-spacing: -.04em; font-weight: 800; }
h3 { font-size: 1.45rem; letter-spacing: -.02em; }
.hero-lede { font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 720px; color: var(--muted); }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin: 2rem 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: .9rem 1.25rem;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--ink);
  cursor: pointer;
}
.button.primary { background: var(--clay); color: white; border-color: var(--clay); box-shadow: 0 14px 34px rgba(217, 107, 69, .28); }
.button.ghost { background: rgba(255,255,255,.44); }
.trust-strip {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.trust-strip li {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  border-radius: 999px;
  padding: .5rem .8rem;
  font-weight: 700;
}
.hero-card {
  background:
    linear-gradient(90deg, rgba(17, 34, 31, .92) 0%, rgba(17, 34, 31, .76) 48%, rgba(17, 34, 31, .18) 100%),
    linear-gradient(0deg, rgba(17, 34, 31, .42), rgba(17, 34, 31, .12)),
    url("assets/hero image.png") center right / cover no-repeat;
  color: white;
  border-radius: 34px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(204, 230, 109, .16);
}
.hero-card > * { position: relative; z-index: 1; }
.hero-card p { color: rgba(255,255,255,.78); }
.hero-card a { color: var(--lime); font-weight: 800; }
.score-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 1rem;
  margin-bottom: 2rem;
}
.score { font-family: "Fraunces", serif; font-size: 5rem; line-height: .8; color: var(--lime); }

.section, .pain-panel, .process, .proof, .seo-answer, .contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.pain-panel {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .94) 0%, rgba(255, 250, 240, .82) 48%, rgba(255, 250, 240, .7) 100%),
    linear-gradient(0deg, rgba(255, 250, 240, .82), rgba(255, 250, 240, .82)),
    url("assets/Service Hero Image.jpg") center / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 38px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  padding: 3rem;
}
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.pain-grid article, .service-card, details, .lead-form {
  background: rgba(255, 250, 240, .9);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.35rem;
}
.pain-grid span { color: var(--clay); font-weight: 900; }
.pain-grid p, .service-card p, details p, .proof-copy p { color: var(--muted); }
.audience {
  padding-top: 5.5rem;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.audience-grid article {
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.62), rgba(255,250,240,.9)),
    radial-gradient(circle at 100% 0%, rgba(204, 230, 109, .22), transparent 10rem);
}
.audience-grid span {
  display: inline-flex;
  margin-bottom: .85rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(47, 125, 90, .1);
  color: var(--leaf);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.audience-grid p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.featured { background: var(--paper); color: var(--ink); }
.service-card.featured p { color: var(--muted); }
.service-card a { font-weight: 900; color: var(--leaf); }
.service-card.featured a { color: var(--leaf); }
.haccp-card {
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .94), rgba(246, 239, 221, .96)),
    radial-gradient(circle at 95% 10%, rgba(241, 184, 75, .16), transparent 12rem);
}
.haccp-badges {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1rem 0 1.15rem;
}
.haccp-badges img {
  width: clamp(74px, 7vw, 104px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 18px;
  background: white;
  padding: .4rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}
.iso-card {
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .92), rgba(240, 247, 244, .94)),
    radial-gradient(circle at 100% 0%, rgba(34, 125, 89, .12), transparent 12rem);
}
.iso-badge {
  margin: .9rem 0 1rem;
  overflow: hidden;
  border: 1px solid rgba(17, 34, 31, .1);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 34px rgba(17, 34, 31, .08);
}
.iso-badge img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.audit-card {
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .94), rgba(242, 246, 248, .94)),
    radial-gradient(circle at 100% 0%, rgba(30, 45, 92, .1), transparent 12rem);
}
.audit-badge {
  margin: .9rem 0 1rem;
  overflow: hidden;
  border: 1px solid rgba(17, 34, 31, .1);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 34px rgba(17, 34, 31, .08);
}
.audit-badge img {
  display: block;
  width: 100%;
  min-height: 150px;
  object-fit: cover;
}
.compliance-card {
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .92), rgba(246, 251, 237, .94)),
    radial-gradient(circle at 100% 15%, rgba(47, 125, 90, .12), transparent 12rem);
}
.compliance-badge {
  margin: .85rem 0 1rem;
  display: flex;
  align-items: center;
}
.compliance-badge img {
  width: min(190px, 74%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(17, 34, 31, .12));
}
.training-card {
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .94), rgba(255, 237, 219, .9)),
    radial-gradient(circle at 100% 0%, rgba(255, 91, 0, .16), transparent 12rem);
}
.training-badges {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 1rem 0;
}
.training-badges img {
  width: clamp(82px, 8vw, 118px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(30, 45, 92, .14);
  box-shadow: 0 12px 30px rgba(30, 45, 92, .12);
}
.efsms-card {
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .94), rgba(238, 248, 236, .94)),
    radial-gradient(circle at 100% 0%, rgba(43, 177, 52, .14), transparent 12rem);
}
.efsms-badge {
  margin: .9rem 0 1rem;
  overflow: hidden;
  border: 1px solid rgba(43, 177, 52, .14);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 34px rgba(17, 34, 31, .08);
}
.efsms-badge img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.process { text-align: center; }
.process .section-heading { margin-inline: auto; }
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
  padding: 0;
  counter-reset: step;
}
.timeline li {
  counter-increment: step;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
  position: relative;
}
.timeline li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  font-weight: 900;
  margin: 0 auto .8rem;
}
.timeline strong, .timeline span { display: block; }
.timeline span { color: var(--muted); font-size: .92rem; margin-top: .35rem; }
.proof {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.training-offers {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  scroll-margin-top: 92px;
}
.training-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.training-program-grid article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 250, 240, .9), rgba(255, 255, 255, .62)),
    radial-gradient(circle at 100% 0%, rgba(241, 184, 75, .18), transparent 11rem);
}
.training-program-grid h3 {
  margin-bottom: .9rem;
}
.training-program-grid ul {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.training-program-grid li::marker {
  color: var(--clay);
}
.training-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-top: 1rem;
}
.training-benefits div {
  padding: 1rem;
  border: 1px solid rgba(47, 125, 90, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .55);
}
.benefit-with-logo {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .9rem;
  align-items: center;
}
.benefit-with-logo img {
  grid-row: span 2;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(30, 45, 92, .14);
  box-shadow: 0 10px 22px rgba(30, 45, 92, .12);
}
.benefit-with-logo img.benefit-photo {
  object-fit: cover;
  border-radius: 18px;
}
.training-benefits strong,
.training-benefits span {
  display: block;
}
.training-benefits strong {
  color: var(--leaf);
  margin-bottom: .35rem;
}
.training-benefits span {
  color: var(--muted);
  font-size: .94rem;
}
.training-cta {
  margin-top: 1rem;
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(17, 34, 31, .96), rgba(36, 89, 77, .94)),
    radial-gradient(circle at 90% 10%, rgba(204, 230, 109, .2), transparent 13rem);
  color: white;
  box-shadow: var(--shadow);
}
.training-cta p {
  max-width: 820px;
  color: rgba(255,255,255,.76);
}
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: 1.5rem; }
.metrics div { background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: 22px; padding: 1rem; }
.metrics strong { display: block; font-family: "Fraunces", serif; font-size: 2rem; }
.metrics span { color: var(--muted); font-weight: 700; }
.testimonials { display: grid; gap: 1rem; }
blockquote { margin: 0; background: var(--moss); color: white; border-radius: 28px; padding: 1.4rem; }
blockquote p { margin-top: 0; font-size: 1.04rem; }
cite { color: var(--lime); font-style: normal; font-weight: 800; }
.seo-answer {
  background: linear-gradient(135deg, #f8d17d, #dfe98f);
  border-radius: 38px;
  padding: 3rem;
}
.seo-answer p:last-child { max-width: 890px; font-size: 1.15rem; }
.deliverables {
  max-width: 1180px;
  margin: 4.5rem auto 0;
  padding: 3rem;
  border: 1px solid rgba(17, 34, 31, .12);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(17, 34, 31, .96), rgba(36, 89, 77, .94)),
    radial-gradient(circle at 90% 10%, rgba(204, 230, 109, .25), transparent 14rem);
  color: white;
  box-shadow: var(--shadow);
}
.deliverables .section-heading p { color: rgba(255,255,255,.76); }
.deliverables .eyebrow { color: var(--lime); }
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin: 2rem 0;
}
.deliverables-grid div {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
}
.deliverables-grid strong,
.deliverables-grid span {
  display: block;
}
.deliverables-grid strong {
  color: var(--lime);
  font-size: 1.05rem;
  margin-bottom: .35rem;
}
.deliverables-grid span {
  color: rgba(255,255,255,.76);
  font-size: .95rem;
}
.faq { padding-top: 3rem; }
details { margin-bottom: .85rem; }
summary { cursor: pointer; font-weight: 900; font-size: 1.08rem; }
.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact-copy ul { list-style: none; padding: 0; font-weight: 800; }
.contact-copy li { margin-bottom: .65rem; }
.lead-form { display: grid; gap: 1rem; box-shadow: var(--shadow); }
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
label { display: grid; gap: .35rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(17,34,31,.2);
  border-radius: 16px;
  padding: .9rem 1rem;
  font: inherit;
  background: white;
}
.form-note { margin: 0; color: var(--muted); }
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.footer-brand {
  display: grid;
  gap: .75rem;
  max-width: 520px;
}
.footer-brand img {
  width: min(280px, 72vw);
  height: auto;
}
.footer-brand p { margin: 0; }
.site-footer nav { display: flex; gap: 1rem; font-weight: 800; }
.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.thank-you {
  width: min(760px, 100%);
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: rgba(255, 250, 240, .88);
  box-shadow: var(--shadow);
  text-align: center;
}
.thank-you img {
  width: min(320px, 76vw);
  height: auto;
  margin-bottom: 1rem;
}
.thank-you h1 { font-size: clamp(2.4rem, 7vw, 4.8rem); }
.thank-you p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 1rem auto 1.5rem;
  max-width: 560px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy, .hero-card, .pain-panel, .service-card, .timeline li, blockquote, .lead-form { animation: rise .7s ease both; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; border: 1px solid var(--line); background: white; border-radius: 999px; padding: .65rem .9rem; font-weight: 900; }
  .nav-links { display: none; position: absolute; left: 1rem; right: 1rem; top: 78px; padding: 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.is-open { display: flex; }
  .hero { padding-top: 3.25rem; }
  .hero-grid, .pain-panel, .proof, .contact { grid-template-columns: 1fr; }
  .service-grid, .pain-grid, .audience-grid, .deliverables-grid, .training-program-grid, .training-benefits { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .deliverables { margin-inline: 1.25rem; padding: 1.35rem; border-radius: 26px; }
}

@media (max-width: 560px) {
  .brand-logo { width: 174px; }
  h1 { font-size: 48px; }
  .benefit-with-logo { grid-template-columns: 1fr; }
  .benefit-with-logo img { margin-bottom: .65rem; }
  .hero-card, .pain-panel, .seo-answer { border-radius: 26px; padding: 1.35rem; }
  .metrics { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
}




