/* A C's Produce — Corporate Red theme */
:root {
  --cream: #F7F3EC;
  --maroon: #7A2E3B;
  --maroon-dark: #3D141C;
  --ink: #241416;
  --ink-soft: #5A4448;
  --accent: #C1495C;
  --line: #E8DCD9;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: #FFFFFF;
  color: var(--ink);
}
h1, h2, h3 { font-family: 'Archivo', sans-serif; margin: 0; }
a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--maroon-dark); }
img { max-width: 100%; display: block; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Utility bar */
.utility-bar {
  background: var(--maroon-dark);
  color: #E9D5D8;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 10px 16px;
}
.utility-bar span.dot {
  display: inline-block;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--accent);
  margin: 0 14px;
  vertical-align: middle;
}

/* Nav */
header.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; border-bottom: 1px solid var(--line);
  max-width: 1200px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand .mark {
  width: 48px; height: 48px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
}
.brand .mark img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1.15; }
.brand .wordmark strong { font-family: 'Archivo', sans-serif; font-size: 20px; font-weight: 800; color: var(--maroon-dark); }
.brand .wordmark span { font-size: 11px; letter-spacing: 0.06em; color: var(--ink-soft); font-weight: 600; }
nav.main-nav { display: flex; align-items: center; gap: 34px; }
nav.main-nav a {
  font-size: 15px; font-weight: 600; color: var(--ink);
}
nav.main-nav a.active { color: var(--maroon); }
.btn {
  display: inline-block; background: var(--maroon); color: #fff; font-size: 14px; font-weight: 700;
  padding: 13px 24px; border-radius: 6px; border: none; cursor: pointer;
}
.btn:hover { background: var(--maroon-dark); color: #fff; }
.btn.outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.7); }
.btn.outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn.dark { background: var(--ink); }
.btn.dark:hover { background: #000; }

/* Page header (photo banner) */
.page-header {
  position: relative; height: 320px; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-header img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-header .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(61,20,28,0.55) 0%, rgba(61,20,28,0.82) 100%); }
.page-header h1 { position: relative; color: #fff; font-size: 44px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }

/* Hero (home) */
.hero { position: relative; height: 640px; display: flex; align-items: flex-end; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(35,20,16,0.15) 0%, rgba(35,20,16,0.55) 60%, rgba(35,20,16,0.9) 100%); }
.hero .content { position: relative; padding: 0 32px 64px; max-width: 720px; margin: 0 auto; width: 100%; }
.hero .badge {
  display: inline-block; background: rgba(193,73,92,0.22); border: 1px solid var(--accent); color: #F0C4CB;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; padding: 8px 16px; border-radius: 4px; margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: 56px; line-height: 1.08; font-weight: 800; margin-bottom: 18px; }
.hero p { color: #E9D5D8; font-size: 18px; line-height: 1.6; max-width: 560px; margin-bottom: 28px; }
.hero .cta-row { display: flex; gap: 16px; }

/* Stats bar */
.stats {
  background: var(--cream); display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1200px; margin: 0 auto;
}
.stats .stat { text-align: left; padding: 32px; border-right: 1px solid var(--line); }
.stats .stat:last-child { border-right: none; }
.stats .stat .num { font-family: 'Archivo', sans-serif; font-size: 32px; font-weight: 800; color: var(--maroon); }
.stats .stat .label { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }

/* Mission line */
.mission { text-align: center; padding: 56px 32px; max-width: 800px; margin: 0 auto; }
.mission p { font-family: 'Archivo', sans-serif; font-size: 24px; font-weight: 700; color: var(--ink); line-height: 1.5; }

/* Section heading */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.section-head .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: var(--maroon); text-transform: uppercase; }
.section-head h2 { font-size: 32px; font-weight: 800; color: var(--ink); margin-top: 8px; }
.section-head a.more { font-size: 15px; font-weight: 700; color: var(--maroon); border-bottom: 1.5px solid var(--maroon); padding-bottom: 2px; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 64px 32px; max-width: 1200px; margin: 0 auto; }
.card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(92,29,41,0.08); }
.card img { height: 220px; width: 100%; object-fit: cover; }
.card .body { padding: 22px; }
.card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* About split */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--cream); }
.split .text { padding: 64px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.split .text p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 480px; }
.split .photo { position: relative; overflow: hidden; min-height: 420px; }
.split .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Quote band */
.quote-band { background: var(--maroon); padding: 64px 32px; text-align: center; }
.quote-band p { font-family: 'Archivo', sans-serif; font-size: 36px; font-weight: 800; color: #fff; max-width: 760px; margin: 0 auto; text-transform: uppercase; }
.quote-band p span { color: #F0C4CB; }

/* CTA banner */
.cta-banner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding: 56px 32px; max-width: 1200px; margin: 0 auto; }
.cta-banner h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.cta-banner p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.cta-banner .buttons { display: flex; gap: 16px; flex-shrink: 0; }
.cta-banner .buttons .btn { padding: 16px 28px; }

/* Content block (generic text pages) */
.content { max-width: 800px; margin: 0 auto; padding: 64px 32px; }
.content h2 { font-size: 26px; font-weight: 800; color: var(--maroon-dark); margin-bottom: 16px; }
.content p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 22px; }
.content ul { padding-left: 20px; margin-bottom: 22px; }
.content li { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 10px; }
.content .callout {
  background: var(--cream); border-left: 4px solid var(--maroon); border-radius: 6px;
  padding: 20px 24px; margin-bottom: 22px;
}
.content .callout strong { color: var(--maroon-dark); }

.order-cta {
  background: var(--cream); border-radius: 12px; padding: 40px; text-align: center; margin: 40px 0;
}
.order-cta .btn { padding: 18px 36px; font-size: 16px; }
.order-cta p.small { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }

.contact-panel {
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px; padding: 24px; margin-top: 20px;
}
.contact-panel strong { color: var(--maroon-dark); }
.contact-panel p { margin: 8px 0; font-size: 15px; color: var(--ink); }

/* Product categories */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto 40px; padding: 0 32px; }
.category { background: var(--cream); border-radius: 10px; padding: 24px 28px; }
.category h3 { font-family: 'Archivo', sans-serif; font-size: 18px; font-weight: 800; color: var(--maroon-dark); margin-bottom: 10px; }
.category p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* Map */
.map-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px 64px; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; border-radius: 10px; }

/* Footer */
footer.site-footer { background: var(--maroon-dark); padding: 56px 32px 28px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-grid .col span.h { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: #fff; text-transform: uppercase; display: block; margin-bottom: 14px; }
.footer-grid .col a, .footer-grid .col p { display: block; font-size: 14px; color: #C2A3A6; margin-bottom: 10px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .mark { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; }
.footer-brand .mark img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.footer-brand strong { font-family: 'Archivo', sans-serif; font-size: 18px; font-weight: 800; color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom span { font-size: 13px; color: #8E6C70; }

/* Mobile nav toggle (simple, no JS breakpoint framework) */
.nav-toggle { display: none; }

@media (max-width: 860px) {
  header.site-header { flex-wrap: wrap; gap: 16px; }
  nav.main-nav { display: none; }
  .hero h1 { font-size: 38px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .photo { min-height: 260px; order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
}
