/* Culinary Coverage — shared styles */
:root {
  --brand: #00357a;
  --brand-dark: #002657;
  --brand-light: #e8eef7;
  --beige: #fff4ea;
  --beige-border: #f0e3d2;
  --gray: #737373;
  --gray-light: #f5f5f5;
  --gray-border: #e0e0e0;
  --text: #1a1a1a;
  --white: #ffffff;
  --success: #2d7a3f;
  --shadow: 0 2px 8px rgba(0, 53, 122, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 53, 122, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo-link { display: flex; align-items: center; gap: 12px; }
.brand-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.brand-tag {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover { color: var(--brand); text-decoration: none; }
.nav a.active { color: var(--brand); }
.nav a.btn-primary,
.nav a.btn-primary:hover,
.nav a.btn-primary.active { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.15s ease;
  text-align: center;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: var(--white); text-decoration: none; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 .accent { color: #b8d4ff; }
.hero p.lead {
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-primary { background: var(--white); color: var(--brand); border-color: var(--white); }
.hero .btn-primary:hover { background: #f0f6ff; color: var(--brand-dark); border-color: #f0f6ff; }
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.6); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }

.hero-card {
  background: var(--white);
  color: var(--text);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-size: 18px;
  color: var(--brand);
  margin-bottom: 18px;
  font-weight: 700;
}
.hero-card ul { list-style: none; }
.hero-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card li:last-child { border-bottom: none; }
.hero-card li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  font-size: 18px;
}

/* ---------- Hero logo treatment ---------- */
.hero-brand {
  text-align: center;
  background: var(--beige);
  border: 1px solid var(--beige-border);
}
.hero-logo {
  width: 240px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}
.hero-brand h3 {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--beige-border);
  margin-top: 8px;
}
.hero-brand ul { text-align: left; }
.hero-brand li { border-bottom: 1px solid var(--beige-border); }

/* ---------- Brand moment section ---------- */
.brand-moment {
  background: var(--beige);
  padding: 84px 0;
  border-top: 1px solid var(--beige-border);
  border-bottom: 1px solid var(--beige-border);
}
.brand-moment-inner {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.brand-logo {
  width: 300px;
  height: auto;
}
.brand-divider {
  width: 1px;
  align-self: stretch;
  background: var(--beige-border);
  min-height: 140px;
}
.brand-copy h2 {
  font-size: 34px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.brand-copy p {
  color: var(--gray);
  font-size: 17px;
  max-width: 520px;
}

@media (max-width: 900px) {
  .brand-moment-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .brand-divider { display: none; }
  .brand-logo { margin: 0 auto; width: 220px; }
  .brand-copy p { margin: 0 auto; }
  .hero-logo { width: 180px; }
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--gray-light); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: 38px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--text);
}
.section-head p {
  font-size: 18px;
  color: var(--gray);
}

/* ---------- Advantages grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: all 0.2s ease;
}
.feature:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: 700;
}
.feature h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
}
.feature p { color: var(--gray); font-size: 15px; }

/* ---------- Coverage types ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.coverage-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  padding: 24px;
}
.coverage-card h4 {
  color: var(--brand);
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 700;
}
.coverage-card p { color: var(--gray); font-size: 14px; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 48px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.stat { text-align: center; }
.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label { color: var(--gray); font-size: 14px; margin-top: 6px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-weight: 800;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-primary { background: var(--white); color: var(--brand); border-color: var(--white); }
.cta-banner .btn-primary:hover { background: #f0f6ff; color: var(--brand-dark); border-color: #f0f6ff; }

/* ---------- Footer ---------- */
.footer {
  background: #111827;
  color: #cbd5e1;
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer ul { list-style: none; }
.footer li { padding: 4px 0; font-size: 14px; }
.footer a { color: #cbd5e1; }
.footer a:hover { color: var(--white); text-decoration: none; }
.footer-brand p { font-size: 14px; color: #9ca3af; margin-top: 12px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Quote form ---------- */
.form-page { padding: 56px 0 80px; }
.form-hero {
  background: var(--beige);
  padding: 56px 0;
  border-bottom: 1px solid var(--beige-border);
}
.form-hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.form-hero-logo {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}
.form-hero .eyebrow { margin-bottom: 8px; }
.form-hero h1 {
  font-size: 40px;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.form-hero p { color: var(--gray); font-size: 17px; max-width: 680px; }
@media (max-width: 700px) {
  .form-hero-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .form-hero-logo { width: 140px; margin: 0 auto; }
  .form-hero p { margin: 0 auto; }
}
.form-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.quote-form {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-top: 4px solid var(--brand);
  border-radius: 10px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-section { margin-bottom: 36px; }
.form-section:last-child { margin-bottom: 0; }
.form-section h3 {
  font-size: 18px;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-light);
}
.form-section p.hint { color: var(--gray); font-size: 14px; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-field .req { color: #c62828; margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,53,122,0.12);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field .help {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}
.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 4px;
}
.radio-group label, .checkbox-group label {
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin: 0;
}
.form-actions {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Honeypot — hidden off-canvas so it loads (bots fill it) but real users never see it.
   Avoids display:none, which sophisticated bots sometimes detect & skip. */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Turnstile widget */
.turnstile-row {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* ---------- Legal pages (privacy, terms) ---------- */
.legal-hero {
  background: var(--beige);
  padding: 56px 0;
  border-bottom: 1px solid var(--beige-border);
}
.legal-hero h1 {
  font-size: 40px;
  color: var(--brand);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 8px;
}
.legal-hero .updated {
  color: var(--gray);
  font-size: 14px;
}
.legal-page {
  padding: 56px 0 80px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}
.legal-content h2 {
  font-size: 22px;
  color: var(--brand);
  margin: 36px 0 12px;
  font-weight: 700;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  color: var(--text);
  margin: 22px 0 8px;
  font-weight: 700;
}
.legal-content p { margin-bottom: 14px; }
.legal-content ul {
  margin: 0 0 18px 22px;
  padding: 0;
}
.legal-content li { margin-bottom: 6px; }
.legal-disclaimer {
  background: var(--beige);
  border: 1px solid var(--beige-border);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--gray);
  margin-bottom: 32px;
}
.legal-disclaimer strong { color: var(--text); }
.form-actions .note { font-size: 13px; color: var(--gray); }

.form-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.sidebar-card h4 {
  color: var(--brand);
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 700;
}
.sidebar-card ul { list-style: none; }
.sidebar-card li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.sidebar-card li::before { content: "✓"; color: var(--brand); font-weight: 700; flex-shrink: 0; }
.sidebar-card.accent {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.sidebar-card.accent h4 { color: var(--white); }
.sidebar-card.accent p { color: rgba(255,255,255,0.92); font-size: 14px; }
.sidebar-card.accent .phone {
  display: block;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
}
.sidebar-card.sidebar-brand {
  background: var(--beige);
  border-color: var(--beige-border);
  text-align: center;
  padding: 24px;
}
.sidebar-card.sidebar-brand img {
  width: 160px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}
.sidebar-card.sidebar-brand p {
  color: var(--gray);
  font-size: 13px;
  margin: 0;
}

/* ---------- Education page ---------- */
.edu-hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  padding: 72px 0;
}
.edu-hero h1 {
  font-size: 44px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-weight: 800;
}
.edu-hero p { font-size: 18px; color: rgba(255,255,255,0.92); max-width: 720px; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.video-wrap {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-wrap video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.video-body { padding: 22px 24px 26px; }
.video-label {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.video-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 700;
}
.video-body p { color: var(--gray); font-size: 14.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 38px; }
  .hero { padding: 60px 0; }
  .features, .coverage-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .form-sidebar { position: static; }
  .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav { gap: 16px; }
  .nav a:not(.btn) { display: none; }
  .section { padding: 60px 0; }
  .section-head h2 { font-size: 28px; }
  .form-hero h1, .edu-hero h1 { font-size: 30px; }
  .brand-tag { display: none; }
}
