/* ============================================================
   FOOD BUSINESS CORRIDOR — style.css
   Palette: midnight navy #0B1220 | cobalt #2864E8 | citrus #FF9F1C
            cream #F6F3ED | slate gray
   Type: Oswald (condensed display) + Inter (body)
   ============================================================ */

:root {
  --navy: #0B1220;
  --navy-2: #121D33;
  --navy-3: #1A2A4A;
  --cobalt: #2864E8;
  --cobalt-dark: #1B4BB8;
  --citrus: #FF9F1C;
  --citrus-dark: #E58705;
  --cream: #F6F3ED;
  --white: #FFFFFF;
  --slate: #5A6478;
  --slate-light: #8B94A7;
  --line: #E3DED4;
  --ok: #1E9E6A;
  --warn: #C97A0A;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(11, 18, 32, 0.10);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; }

a { color: var(--cobalt); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--citrus);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .logo-mark {
  display: inline-flex;
  width: 34px; height: 34px;
  background: var(--citrus);
  color: var(--navy);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.logo .accent { color: var(--citrus); }
.main-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  color: #C7CEDC;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active { background: var(--navy-3); color: var(--white); }
.main-nav a.nav-cta {
  background: var(--citrus);
  color: var(--navy);
}
.main-nav a.nav-cta:hover { background: var(--citrus-dark); color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  background-image:
    linear-gradient(rgba(40,100,232,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,100,232,0.10) 1px, transparent 1px);
  background-size: 44px 44px;
  color: var(--white);
  padding: 64px 20px 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,159,28,0.22), transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1140px; margin: 0 auto; position: relative; }
.hero .kicker {
  display: inline-block;
  background: var(--cobalt);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  max-width: 780px;
}
.hero h1 .hl { color: var(--citrus); }
.hero .sub {
  margin-top: 16px;
  color: #B9C2D4;
  font-size: 1.08rem;
  max-width: 640px;
}

/* ---------- Search panel ---------- */
.search-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  margin-top: 34px;
  border-top: 4px solid var(--citrus);
}
.search-panel h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 14px;
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 5px;
}
.field select, .field input[type="text"], .field input[type="search"] {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--white);
  color: var(--navy);
}
.field select:focus, .field input:focus {
  outline: 2px solid var(--cobalt);
  outline-offset: 1px;
  border-color: var(--cobalt);
}
.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s;
}
.chip input { accent-color: var(--cobalt); cursor: pointer; }
.chip:has(input:checked) {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--white);
}
.search-actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--cobalt); color: var(--white); }
.btn-primary:hover { background: var(--cobalt-dark); }
.btn-citrus { background: var(--citrus); color: var(--navy); }
.btn-citrus:hover { background: var(--citrus-dark); }
.btn-ghost {
  background: transparent;
  color: var(--cobalt);
  border: 1.5px solid var(--cobalt);
}
.btn-ghost:hover { background: rgba(40,100,232,0.08); }
.btn-sm { padding: 8px 14px; font-size: 0.84rem; }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--white); }
.section-head { margin-bottom: 28px; }
.section-head .kicker-sm {
  color: var(--cobalt);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-head h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.section-head p { color: var(--slate); max-width: 620px; margin-top: 8px; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.listing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.15s, transform 0.15s;
  position: relative;
}
.listing-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.listing-card.featured { border: 2px solid var(--citrus); }
.badge-featured {
  position: absolute;
  top: -11px; right: 14px;
  background: var(--citrus);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}
.listing-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.listing-card h3 a { color: var(--navy); text-decoration: none; }
.listing-card h3 a:hover { color: var(--cobalt); }
.listing-loc {
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 600;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--cream);
  color: var(--slate);
  border: 1px solid var(--line);
}
.tag.tag-yes { background: #E7F5EE; color: var(--ok); border-color: #C4E7D6; }
.status-pill {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
}
.status-inquiries { background: #E7F5EE; color: var(--ok); }
.status-waitlist { background: #FDF1DC; color: var(--warn); }
.status-confirm { background: #ECEFF5; color: var(--slate); }
.card-meta { font-size: 0.76rem; color: var(--slate-light); margin-top: auto; }
.sample-flag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warn);
  background: #FDF1DC;
  border: 1px dashed var(--warn);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ---------- Step / value blocks ---------- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.step .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--citrus);
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.02rem;
  margin: 10px 0 6px;
  letter-spacing: 0.03em;
}
.step p { color: var(--slate); font-size: 0.9rem; }

/* ---------- Profile page ---------- */
.profile-hero {
  background: var(--navy);
  color: var(--white);
  padding: 44px 20px;
}
.profile-hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.1;
}
.profile-hero .loc { color: #B9C2D4; margin-top: 6px; font-weight: 600; }
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 26px;
  align-items: start;
}
@media (max-width: 860px) { .profile-grid { grid-template-columns: 1fr; } }
.detail-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
}
.detail-block h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream);
}
.fact-list { list-style: none; }
.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--cream);
  font-size: 0.92rem;
}
.fact-list li:last-child { border-bottom: none; }
.fact-list .k { color: var(--slate); font-weight: 600; }
.fact-list .v { font-weight: 600; text-align: right; }
.v-yes { color: var(--ok); }
.v-no { color: var(--slate-light); }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--cobalt);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.98rem;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.sidebar-card .btn { width: 100%; margin-bottom: 8px; }
.verify-note {
  font-size: 0.78rem;
  color: var(--slate);
  background: var(--cream);
  border-radius: 6px;
  padding: 10px 12px;
  margin-top: 8px;
}

/* ---------- Notice / disclaimer boxes ---------- */
.notice {
  background: #FDF1DC;
  border-left: 4px solid var(--citrus);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #6B4A05;
  margin: 18px 0;
}
.notice-blue {
  background: #E8EFFD;
  border-left: 4px solid var(--cobalt);
  color: #17356E;
}

/* ---------- Opportunity cards ---------- */
.opp-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--cobalt);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
}
.opp-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.08rem; }
.opp-card .opp-meta { color: var(--slate); font-size: 0.85rem; margin: 6px 0 10px; }
.opp-deadline {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--warn);
  background: #FDF1DC;
  padding: 3px 10px;
  border-radius: 4px;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 720px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--cobalt);
  border-color: var(--cobalt);
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.price-card.highlight { border: 2px solid var(--citrus); }
.price-card .plan {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--slate);
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0;
}
.price-card .amount span { font-size: 1rem; color: var(--slate); font-weight: 400; }
.price-card ul { list-style: none; text-align: left; margin: 16px 0 20px; }
.price-card ul li {
  padding: 7px 0 7px 26px;
  font-size: 0.9rem;
  position: relative;
  border-bottom: 1px solid var(--cream);
}
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--ok);
  font-weight: 800;
}

/* ---------- Content pages ---------- */
.content-page { max-width: 780px; }
.content-page h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.4rem;
  margin: 30px 0 10px;
  letter-spacing: 0.02em;
}
.content-page h3 { font-size: 1.05rem; margin: 20px 0 8px; }
.content-page p, .content-page li { color: #333C4E; margin-bottom: 10px; }
.content-page ul, .content-page ol { padding-left: 24px; margin-bottom: 14px; }

/* ---------- Result count / toolbar ---------- */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.result-count { font-weight: 700; font-size: 0.95rem; color: var(--slate); }
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--slate);
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--cobalt);
  color: var(--white);
  padding: 48px 20px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}
.cta-band p { color: #D6E2FB; margin: 10px auto 22px; max-width: 560px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #97A1B5;
  padding: 44px 20px 30px;
  font-size: 0.86rem;
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.site-footer a { color: #97A1B5; text-decoration: none; display: block; padding: 3px 0; }
.site-footer a:hover { color: var(--citrus); }
.footer-legal {
  max-width: 1140px;
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--navy-3);
  font-size: 0.78rem;
  color: #6C778D;
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 28px; }
.hidden { display: none !important; }
.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--citrus);
  color: var(--navy);
  padding: 10px 16px;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus { left: 10px; top: 10px; }

@media (max-width: 640px) {
  .hero { padding: 44px 20px 56px; }
  .header-inner { justify-content: center; }
  .main-nav { justify-content: center; }
}
