/* =============================================================================
   FOOD SAFETY PAGE — css/food-safety.css
   Matches site design tokens from style.css
============================================================================= */

/* -----------------------------------------------------------------------------
   TRUST STRIP (shared with About Us)
----------------------------------------------------------------------------- */
.about-trust-strip {
  background: var(--navy, #0B1C36);
  padding: 6px 0;
  border-bottom: 1px solid rgba(11,28,54,0.10);
}

.about-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.about-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 20px;
  color: rgba(255,255,255,0.88);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
  line-height: 1.1;
}

.about-trust-item i { color: var(--teal, #4CC9F0); font-size: 11px; }

.about-trust-div {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   HERO
----------------------------------------------------------------------------- */
/* ================================================================
   HERO — split layout: navy text left / photo right
   Matches About, Services and Contact page hero design.
   ================================================================ */
.fs-hero {
  position: relative;
  height: clamp(300px, 32vw, 400px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
}

/* ── RIGHT: photo panel ── */
.fs-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 60%;
  height: 100%;
  z-index: 0;
  clip-path: polygon(120px 0, 100% 0, 100% 100%, 0 100%);
}

.fs-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(11,28,54,1.00)  0%,
    rgba(11,28,54,0.85) 15%,
    rgba(11,28,54,0.55) 30%,
    rgba(11,28,54,0.25) 45%,
    rgba(11,28,54,0.00) 62%
  );
  pointer-events: none;
}

.fs-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.92) contrast(1.05);
  transform: scaleX(-1) translateZ(0);
  backface-visibility: hidden;
}

/* ── LEFT: navy text panel ── */
.fs-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  width: 55%;
  height: 100%;
  z-index: 1;
  background: var(--navy);
  clip-path: polygon(0 0, calc(100% - 120px) 0, 100% 100%, 0 100%);
}

/* Teal accent line at the top of the blue panel */
.fs-hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal) 60%, transparent);
}

/* ── Content sits above both panels ── */
.fs-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 var(--container-pad, 48px);
}

.fs-hero-text {
  width: clamp(320px, 46%, 560px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.fs-hero-eyebrow {
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--teal, #4CC9F0);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.fs-hero-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 14px;
}

.fs-hero-sub {
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 460px;
}

/* ── Mobile: collapse to full-bleed photo hero ── */
@media (max-width: 900px) {
  .fs-hero {
    height: auto;
    min-height: 300px;
  }
  .fs-hero-bg {
    position: absolute;
    width: 100%;
    clip-path: none;
  }
  .fs-hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(11,28,54,0.35) 0%,
      rgba(11,28,54,0.75) 60%,
      rgba(11,28,54,0.92) 100%
    );
  }
  .fs-hero-overlay {
    position: absolute;
    width: 100%;
    clip-path: none;
    background: transparent;
  }
  .fs-hero-overlay::after { display: none; }
  .fs-hero-content {
    justify-content: center;
    align-items: flex-end;
    padding: 32px 40px 44px;
  }
  .fs-hero-text {
    width: 100%;
    max-width: 600px;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .fs-hero       { min-height: 260px; }
  .fs-hero-sub   { display: none; }
  .fs-hero-title { letter-spacing: 0; }
}

/* pills removed */

/* ── Audit card — pinned to the right side of the hero at all sizes ── */
.fs-audit-card {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}

@media (max-width: 900px) {
  /* Hide on mobile — not enough room in the collapsed hero */
  .fs-audit-card { display: none; }
}

.fs-audit-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(11,28,54,0.82);
  border: 2px solid rgba(76,201,240,0.40);
  border-radius: 14px;
  padding: 18px 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
  width: 210px;
  transition: border-color 0.3s;
}

.fs-audit-card:hover .fs-audit-card-inner {
  border-color: rgba(255, 140, 0, 0.70);
}

.fs-audit-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(76,201,240,0.15);
  border: 1.5px solid rgba(76,201,240,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--teal, #4CC9F0);
}

.fs-audit-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: var(--text-base);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.fs-audit-divider {
  width: 100%;
  height: 1px;
  background: rgba(76,201,240,0.25);
}

.fs-audit-body {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin: 0;
}

.fs-audit-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  width: 100%;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color 0.2s ease;
  margin-top: 4px;
}

.fs-audit-contact--email { margin-top: 2px; }

.fs-audit-contact:hover { color: var(--teal, #4CC9F0); }

.fs-audit-contact > i {
  font-size: var(--text-sm);
  color: var(--teal, #4CC9F0);
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

/* contact bar removed */

/* -----------------------------------------------------------------------------
   STATEMENT
----------------------------------------------------------------------------- */
.fs-statement {
  background: #fff;
  padding: 60px 0;
  border-bottom: 3px solid var(--teal);
}

.fs-statement-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.fs-statement-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 28px;
}

.fs-statement-certs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.fs-statement-certs-img {
  width: 450px;
  max-width: 100%;
  height: auto;
}

.fs-statement-certs-caption {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin: 0;
}

/* label-group: eyebrow + big heading */
.fs-statement-label-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fs-statement-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

.fs-statement-eyebrow i {
  font-size: var(--text-sm);
}

.fs-statement-heading {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: 0;
}

.fs-statement-body {
  margin: 0;
  padding: 44px 52px;
  background: #fff;
  border-left: 6px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 4px 24px rgba(11,28,54,0.09);
}

.fs-statement-body p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.85;
  margin: 0 0 20px;
}

.fs-statement-body p:last-child {
  margin: 0;
}

.fs-statement-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(11,28,54,0.08);
}

.fs-statement-cta-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.fs-statement-cta-sub {
  font-size: var(--text-sm);
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

.fs-statement-body strong {
  color: var(--navy);
  font-weight: 700;
}

/* -----------------------------------------------------------------------------
   COMPLIANCE SNAPSHOT (replaces verbose 4 Pillars)
   Four compact stat tiles in a single row
----------------------------------------------------------------------------- */
.fs-pillars {
  background: var(--gray-bg, #F5F7FA);
  padding: 40px 0;
  border-bottom: 1px solid rgba(11,28,54,0.07);
}

.fs-pillars-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 28px;
}

.fs-pillars-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}

.fs-pillars-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
}

.fs-pillars-sub {
  font-size: var(--text-sm);
  color: var(--gray-text);
  line-height: 1.65;
  margin: 0;
}

/* ── Compact 4-tile grid ── */
.fs-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fs-pillar {
  background: #fff;
  border: 1px solid rgba(11,28,54,0.08);
  border-radius: var(--radius-md, 10px);
  border-top: 3px solid var(--teal);
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.fs-pillar:hover {
  box-shadow: 0 6px 22px rgba(11,28,54,0.10);
  transform: translateY(-2px);
}

.fs-pillar-icon {
  font-size: 22px;
  color: var(--teal);
  line-height: 1;
}

.fs-pillar-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 900;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.fs-pillar-body {
  font-size: 11.5px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* ── Checklist inside each tile ── */
.fs-pillar-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid rgba(11,28,54,0.07);
  padding-top: 10px;
}

.fs-pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.fs-pillar-list li i {
  color: var(--teal);
  font-size: var(--text-xs);
  margin-top: 3px;
  flex-shrink: 0;
}


/* -----------------------------------------------------------------------------
   AUDIT BADGE STRIP
----------------------------------------------------------------------------- */
.fs-badge-strip {
  background: var(--navy);
  border-bottom: 3px solid var(--teal);
  padding: 16px 0;
}

.fs-badge-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.fs-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.fs-badge-item i {
  color: var(--teal);
  font-size: var(--text-sm);
}

.fs-badge-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   PULL QUOTE
----------------------------------------------------------------------------- */
.fs-pullquote {
  background: var(--navy);
  padding: 56px 0;
}

.fs-pullquote-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fs-pullquote-icon {
  font-size: 32px;
  color: var(--teal);
  opacity: 0.6;
}

.fs-pullquote-text {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin: 0;
  border: none;
  padding: 0;
}

.fs-pullquote-attr {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* auditor card removed */

/* -----------------------------------------------------------------------------
   CERTIFICATIONS SECTION
----------------------------------------------------------------------------- */
.fs-certs-section {
  background: #fff;
  padding: 60px 0 64px;
  border-top: 1px solid rgba(11,28,54,0.07);
}

.fs-certs-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.fs-certs-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}

.fs-certs-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: 0 0 12px;
}

.fs-certs-sub {
  font-size: var(--text-base);
  color: var(--gray-text);
  line-height: 1.65;
  margin: 0;
}

.fs-certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fs-cert-card {
  background: var(--gray-bg, #F5F7FA);
  border: 1px solid rgba(11,28,54,0.08);
  border-top: 3px solid var(--teal);
  border-radius: 12px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.fs-cert-card:hover {
  box-shadow: 0 8px 28px rgba(11,28,54,0.10);
  transform: translateY(-3px);
}

.fs-cert-card-icon {
  font-size: 24px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.fs-cert-card-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--teal);
}

.fs-cert-card-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.2;
}

.fs-cert-card-desc {
  font-size: var(--text-base);
  color: var(--gray-text);
  line-height: 1.65;
  margin: 0;
}

.fs-cert-card-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(11,28,54,0.07);
  padding-top: 12px;
}

.fs-cert-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}

.fs-cert-card-list li i {
  color: var(--teal);
  font-size: var(--text-xs);
  margin-top: 3px;
  flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   DAILY CHECKLIST SECTION
----------------------------------------------------------------------------- */
.fs-daily {
  background: var(--navy);
  padding: 60px 0 64px;
}

.fs-daily-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.fs-daily-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}

.fs-daily-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: 0 0 12px;
}

.fs-daily-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin: 0;
}

.fs-daily-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fs-daily-col {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(76,201,240,0.18);
  border-radius: 12px;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s, border-color 0.25s;
}

.fs-daily-col:hover {
  background: rgba(76,201,240,0.07);
  border-color: rgba(76,201,240,0.38);
}

.fs-daily-col-icon {
  font-size: 26px;
  color: var(--teal);
  line-height: 1;
}

.fs-daily-col-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.fs-daily-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fs-daily-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
  font-weight: 500;
}

.fs-daily-list li i {
  color: var(--teal);
  font-size: var(--text-base);
  margin-top: 2px;
  flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   BOTTOM CTA
----------------------------------------------------------------------------- */
.fs-bottom-cta {
  background: #fff;
  border-top: 1px solid rgba(11,28,54,0.07);
  padding: 52px 0;
}

.fs-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.fs-bottom-cta-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}

.fs-bottom-cta-heading {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
}

.fs-bottom-cta-sub {
  font-size: var(--text-base);
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.fs-bottom-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.fs-bottom-cta-email {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s;
}

.fs-bottom-cta-email:hover { color: var(--teal); }
.fs-bottom-cta-email i { font-size: 12px; color: var(--teal); }

/* Responsive */
@media (max-width: 1100px) {
  .fs-certs-grid { grid-template-columns: repeat(2, 1fr); }
  .fs-daily-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .fs-certs-grid { grid-template-columns: 1fr; }
  .fs-daily-grid { grid-template-columns: 1fr; }
  .fs-bottom-cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .fs-bottom-cta-sub { max-width: 100%; }
  .fs-bottom-cta-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

/* -----------------------------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .fs-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .fs-hero { min-height: 260px; }
  .fs-audit-card { display: none; }
}

@media (max-width: 600px) {
  .fs-pillars-grid { grid-template-columns: 1fr; }
  .fs-hero-title { font-size: clamp(22px, 6vw, 32px); }

  /* ── Questions About Our Food Safety Program — mobile ── */
  .fs-statement-body {
    padding: 24px 18px;
    border-left-width: 4px;
  }

  .fs-statement-body p {
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 16px;
  }

  .fs-statement-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 22px;
    padding-top: 20px;
  }

  .fs-statement-cta-title {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .fs-statement-cta-sub {
    font-size: 13px;
    line-height: 1.65;
  }

  .fs-statement-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
}
