/* Cara Donna Provision Co. — caradonnaprov.com */
/* Original: FrontPage/Bluefish, wholesale food distributor, New England */
/* Layout: 1090px, red+gold accent, corporate boxed */

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  line-height: 1.65;
  color: #333333;
  background: #f5f4f0;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #BE9E2A; text-decoration: none; transition: color 0.2s; }
a:hover { color: #9a7e1a; }

/* ---- TOP STRIPE ---- */
.cp-topstripe {
  background: #cc0000;
  height: 4px;
}

/* ---- HEADER ---- */
.cp-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.cp-header-inner {
  max-width: 1090px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cp-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cp-logo-img {
  height: 55px;
  width: auto;
}
.cp-logo-text {
  font-size: 1.35em;
  font-weight: 700;
  color: #333;
  line-height: 1.1;
}
.cp-logo-text .cp-tagline {
  display: block;
  font-size: 0.42em;
  color: #A9AB87;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cp-header-contact {
  font-size: 0.8em;
  color: #888;
  text-align: right;
}
.cp-header-contact strong { color: #cc0000; }
.cp-mobile-menu {
  display: none;
  background: none;
  border: 1px solid #cc0000;
  color: #cc0000;
  font-size: 0.88em;
  padding: 5px 13px;
  cursor: pointer;
  border-radius: 2px;
}
.cp-mobile-menu:hover { background: #cc0000; color: #fff; }

/* ---- NAVIGATION ---- */
.cp-nav {
  background: #333;
}
.cp-nav-list {
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  list-style: none;
}
.cp-nav-list a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 11px 16px;
  font-size: 0.82em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.cp-nav-list a:hover,
.cp-nav-list a.active {
  color: #fff;
  background: #cc0000;
}

/* ---- HERO / SLIDER ---- */
.cp-hero {
  position: relative;
  overflow: hidden;
  background: #333;
}
.cp-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.cp-hero-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 32px 36px;
}
.cp-hero-caption h1 {
  font-size: 1.8em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.cp-hero-caption p {
  font-size: 0.9em;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
}

/* ---- MAIN ---- */
.cp-wrap {
  max-width: 1090px;
  margin: 0 auto;
  padding: 28px 22px;
}
.cp-main {
  max-width: 1090px;
  margin: 0 auto;
  padding: 28px 22px;
}

/* ---- SECTION ---- */
.cp-section { margin-bottom: 26px; }
.cp-section-title {
  font-size: 1.2em;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.cp-section-line {
  width: 50px;
  height: 3px;
  background: #cc0000;
  margin-bottom: 18px;
}

/* ---- THREE-COL FEATURES ---- */
.cp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 22px 0;
}
.cp-feature-box {
  background: #fff;
  border: 1px solid #e0ddd5;
  border-radius: 3px;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.2s;
}
.cp-feature-box:hover { border-color: #BE9E2A; }
.cp-feature-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.cp-feature-box h3 {
  font-size: 0.95em;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
  padding: 16px 16px 0;
}
.cp-feature-box p {
  font-size: 0.82em;
  color: #888;
  line-height: 1.5;
  padding: 0 16px 18px;
}

/* ---- CARD GRID ---- */
.cp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 18px 0;
}
.cp-card {
  background: #fff;
  border: 1px solid #e0ddd5;
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cp-card:hover {
  border-color: #cc0000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.cp-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.cp-card-body {
  padding: 14px;
}
.cp-card-body h3 {
  font-size: 0.92em;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.3;
}
.cp-card-body h3 a { color: #333; }
.cp-card-body h3 a:hover { color: #cc0000; }
.cp-card-body p {
  font-size: 0.8em;
  color: #888;
  line-height: 1.5;
}
.cp-card-date {
  display: block;
  font-size: 0.72em;
  color: #bbb;
  margin-bottom: 4px;
}

/* ---- CALLOUT BANNER ---- */
.cp-callout {
  background: #333;
  padding: 36px 22px;
  text-align: center;
  margin: 24px 0;
  border-radius: 3px;
}
.cp-callout h2 {
  color: #fff;
  font-size: 1.3em;
  margin-bottom: 8px;
}
.cp-callout p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9em;
  margin-bottom: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cp-btn {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  padding: 9px 26px;
  font-size: 0.84em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: background 0.2s;
  text-decoration: none;
}
.cp-btn:hover { background: #a00000; color: #fff; }
.cp-btn-gold {
  display: inline-block;
  background: #BE9E2A;
  color: #fff;
  padding: 9px 26px;
  font-size: 0.84em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: background 0.2s;
  text-decoration: none;
}
.cp-btn-gold:hover { background: #9a7e1a; color: #fff; }

/* ---- POST LIST ---- */
.cp-listing { margin: 18px 0; }
.cp-post {
  background: #fff;
  border: 1px solid #e0ddd5;
  border-radius: 3px;
  padding: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  transition: border-color 0.2s;
}
.cp-post:hover { border-color: #cc0000; }
.cp-post-thumb {
  width: 150px;
  min-width: 150px;
  height: 105px;
  object-fit: cover;
  border-radius: 2px;
}
.cp-post-body h3 {
  font-size: 0.93em;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}
.cp-post-body h3 a { color: #333; }
.cp-post-body h3 a:hover { color: #cc0000; }
.cp-post-body p {
  font-size: 0.8em;
  color: #888;
  line-height: 1.5;
}
.cp-post-date {
  font-size: 0.71em;
  color: #bbb;
  margin-top: 4px;
}

/* ---- ARTICLE ---- */
.cp-article {
  max-width: 710px;
  margin: 0 auto;
  padding: 0 22px;
}
.cp-article-header { margin-bottom: 20px; }
.cp-breadcrumb {
  font-size: 0.77em;
  color: #bbb;
  margin-bottom: 12px;
}
.cp-breadcrumb a { color: #BE9E2A; }
.cp-article-header h1 {
  font-size: 1.55em;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin-bottom: 8px;
}
.cp-article-meta {
  font-size: 0.78em;
  color: #bbb;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0ddd5;
  margin-bottom: 18px;
}
.cp-cover-img {
  width: 100%;
  border-radius: 3px;
  margin-bottom: 20px;
  border: 1px solid #e0ddd5;
}
.cp-float-img {
  float: right;
  margin: 0 0 14px 18px;
  max-width: 260px;
  border-radius: 3px;
  border: 1px solid #e0ddd5;
}

/* ---- PROSE ---- */
.cp-prose {
  font-size: 1em;
  line-height: 1.8;
  color: #444;
}
.cp-prose h2 {
  color: #333;
  font-size: 1.2em;
  font-weight: 700;
  margin: 26px 0 10px;
}
.cp-prose h3 {
  color: #555;
  font-size: 1.02em;
  font-weight: 700;
  margin: 18px 0 6px;
}
.cp-prose p { margin-bottom: 12px; }
.cp-prose ul, .cp-prose ol { margin: 6px 0 14px 24px; }
.cp-prose li { margin-bottom: 4px; }
.cp-prose strong { color: #333; }
.cp-prose blockquote {
  border-left: 3px solid #BE9E2A;
  margin: 14px 0;
  padding: 10px 16px;
  background: #faf8f0;
  color: #666;
  font-style: italic;
  border-radius: 0 3px 3px 0;
}
.cp-prose a { text-decoration: underline; text-underline-offset: 2px; }
.cp-prose a:hover { color: #9a7e1a; }
.cp-prose code {
  background: #f0ede5;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 0.9em;
}
.cp-prose pre {
  background: #2b2820;
  color: #d8d0c0;
  padding: 14px;
  border-radius: 3px;
  overflow-x: auto;
  margin: 12px 0;
  font-size: 0.85em;
  line-height: 1.5;
}
.cp-prose pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.cp-prose img {
  border-radius: 3px;
  margin: 12px 0;
  border: 1px solid #e0ddd5;
}

/* ---- TABLES ---- */
.cp-prose table {
  border-collapse: collapse;
  width: 100%;
  margin: 12px 0;
  font-size: 0.88em;
}
.cp-prose th, .cp-prose td {
  padding: 9px 11px;
  border: 1px solid #e0ddd5;
  text-align: left;
}
.cp-prose th { background: #333; color: #fff; font-weight: 600; }
.cp-prose tr:nth-child(even) { background: #faf8f0; }
.cp-prose tr:hover { background: #f0ede5; }

/* ---- RELATED ---- */
.cp-related {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0ddd5;
}
.cp-related h2 {
  font-size: 1em;
  color: #333;
  margin-bottom: 12px;
  font-weight: 700;
}

/* ---- FOOTER ---- */
.cp-footer {
  background: #333;
  padding: 26px 22px 0;
  margin-top: 32px;
}
.cp-footer-inner {
  max-width: 1090px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.cp-footer-brand p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8em;
  margin-top: 8px;
  line-height: 1.55;
}
.cp-footer-col h4 {
  color: #BE9E2A;
  font-size: 0.76em;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cp-footer-col ul { list-style: none; }
.cp-footer-col li { margin-bottom: 4px; }
.cp-footer-col a { color: rgba(255,255,255,0.3); font-size: 0.8em; }
.cp-footer-col a:hover { color: #BE9E2A; }
.cp-footer-bottom {
  max-width: 1090px;
  margin: 14px auto 0;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.72em;
  color: rgba(255,255,255,0.2);
}

/* ---- INFO PAGES ---- */
.cp-page {
  max-width: 710px;
  margin: 0 auto;
  padding: 26px 22px;
}
.cp-page h1 {
  font-size: 1.45em;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
}
.cp-page h2 {
  color: #cc0000;
  font-size: 1.05em;
  margin: 20px 0 8px;
  font-weight: 700;
}
.cp-page p { margin-bottom: 10px; color: #666; }
.cp-page ul { margin: 6px 0 12px 20px; color: #666; }
.cp-page li { margin-bottom: 4px; }
.cp-page img {
  border-radius: 3px;
  margin: 12px 0;
  border: 1px solid #e0ddd5;
}

/* ---- RESPONSIVE — 820px ---- */
@media (max-width: 820px) {
  .cp-mobile-menu { display: block; }
  .cp-nav-list { display: none; flex-direction: column; padding: 0; }
  .cp-nav-list.open { display: flex; }
  .cp-nav-list a { padding: 11px 22px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .cp-hero-img { height: 260px; }
  .cp-hero-caption h1 { font-size: 1.35em; }
  .cp-grid { grid-template-columns: 1fr; }
  .cp-features { grid-template-columns: 1fr; gap: 14px; }
  .cp-post { flex-direction: column; }
  .cp-post-thumb { width: 100%; min-width: auto; height: 160px; }
  .cp-article-header h1 { font-size: 1.3em; }
  .cp-footer-inner { grid-template-columns: 1fr; gap: 18px; }
  .cp-float-img { float: none; max-width: 100%; margin: 0 0 14px 0; }
  .cp-header-contact { display: none; }
}

/* ---- RESPONSIVE — 490px ---- */
@media (max-width: 490px) {
  .cp-hero-caption h1 { font-size: 1.1em; }
  .cp-hero-img { height: 200px; }
  .cp-logo-text { font-size: 1.1em; }
  .cp-logo-text .cp-tagline { display: none; }
  .cp-article-header h1 { font-size: 1.15em; }
  .cp-section-title { font-size: 1.05em; }
  .cp-logo-img { height: 40px; }
}
