/* PrepperPetShop.com — v2 (The Prepared-inspired editorial authority) */
/* Navy #1B2A4A · Amber #D4913A · White · Stone #F3F4F6 · Charcoal #2D3239 */

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

:root{
  --navy:#1B2A4A;
  --navy-light:#243555;
  --amber:#D4913A;
  --amber-hover:#C07E2E;
  --amber-light:#F5E6D0;
  --amber-bg:#FDF8F0;
  --stone:#F3F4F6;
  --charcoal:#2D3239;
  --text:#3A3F47;
  --text-light:#6B7280;
  --text-faint:#9CA3AF;
  --white:#FFFFFF;
  --border:#E5E7EB;
  --border-light:#F0F1F3;
  --max-w:1300px;
  --max-w-wide:1340px;
  --radius:10px;
}

html{font-size:17px;-webkit-text-size-adjust:100%}
body{
  font-family:'Segoe UI',system-ui,-apple-system,sans-serif;
  color:var(--text);line-height:1.72;background:var(--white);
  -webkit-font-smoothing:antialiased;
}

/* — HEADER (The Prepared-style: minimal, confident) — */
.site-header{
  background:var(--navy);padding:0 24px;
  display:flex;align-items:center;justify-content:space-between;
  position:sticky;top:0;z-index:100;height:56px;
  border-bottom:2px solid var(--amber);
}
.site-logo{
  font-size:1.05rem;font-weight:700;letter-spacing:-0.01em;
  color:var(--white);text-decoration:none;
}
.site-logo span{color:var(--amber)}
.site-nav{display:flex;gap:20px;font-size:0.82rem;font-weight:500;letter-spacing:0.01em}
.site-nav a{color:rgba(255,255,255,0.75);text-decoration:none;transition:color .15s}
.site-nav a:hover{color:var(--amber)}

@media(max-width:700px){
  .site-nav{display:none}
  .mob-menu{display:flex;align-items:center;font-size:1.3rem;cursor:pointer;background:none;border:none;color:var(--white)}
}
@media(min-width:701px){.mob-menu{display:none}}

/* — HERO (editorial, not salesy) — */
.hero{
  background:var(--navy);color:var(--white);
  padding:52px 24px 44px;
}
.hero-inner{max-width:var(--max-w-wide);margin:0 auto}
.hero h1{
  font-size:clamp(1.7rem,3.8vw,2.5rem);font-weight:800;
  line-height:1.14;margin-bottom:12px;letter-spacing:-0.03em;
}
.hero h1 em{font-style:normal;color:var(--amber)}
.hero-sub{
  font-size:1rem;color:#A0B1C5;max-width:520px;line-height:1.65;
  margin-bottom:24px;
}
.hero-tag{
  display:inline-block;font-size:0.78rem;font-weight:600;
  color:var(--amber);letter-spacing:0.06em;text-transform:uppercase;
  margin-bottom:10px;
}

/* — SECTION CLUSTERS — */
.section{padding:48px 24px}
.section-alt{background:var(--stone)}
.section-inner{max-width:var(--max-w-wide);margin:0 auto}
.section h2{
  font-size:1.25rem;font-weight:700;color:var(--navy);
  margin-bottom:6px;line-height:1.25;
}
.section-desc{font-size:0.88rem;color:var(--text-light);margin-bottom:20px}
.section-label{
  font-size:0.72rem;font-weight:700;text-transform:uppercase;
  letter-spacing:0.08em;color:var(--amber);margin-bottom:6px;
}

/* — GUIDE CARDS (The Prepared style: clean list, not flashy) — */
.guide-list{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:12px;
}
.guide-card{
  display:flex;align-items:flex-start;gap:12px;
  padding:14px 16px;border-radius:8px;
  text-decoration:none;color:var(--text);
  border:1px solid var(--border-light);
  transition:border-color .15s,box-shadow .15s;
  background:var(--white);
}
.guide-card:hover{
  border-color:var(--amber);
  box-shadow:0 2px 8px rgba(27,42,74,0.06);
}
.guide-card .gc-icon{
  flex-shrink:0;width:36px;height:36px;
  background:var(--amber-bg);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;
}
.guide-card h3{
  font-size:0.9rem;font-weight:600;color:var(--navy);
  line-height:1.35;margin:0;
}
.guide-card .gc-kw{
  font-size:0.75rem;color:var(--text-faint);margin-top:2px;
}

/* — ARTICLE LAYOUT — */
.article-wrap{max-width:var(--max-w);margin:0 auto;padding:40px 24px 64px}
.article-wrap h1{
  font-size:clamp(1.5rem,3.5vw,2.1rem);font-weight:800;
  color:var(--navy);line-height:1.2;margin-bottom:8px;letter-spacing:-0.02em;
}
.article-meta{
  font-size:0.84rem;color:var(--text-light);margin-bottom:28px;
  padding-bottom:20px;border-bottom:1px solid var(--border);
}
.article-wrap h2{font-size:1.25rem;font-weight:700;color:var(--navy);margin:36px 0 12px;line-height:1.25}
.article-wrap h3{font-size:1.05rem;font-weight:700;color:var(--charcoal);margin:24px 0 8px}
.article-wrap p{margin-bottom:16px}
.article-wrap ul,.article-wrap ol{margin:0 0 16px 20px}
.article-wrap li{margin-bottom:6px}

/* Callout */
.callout{
  background:var(--amber-bg);border-left:3px solid var(--amber);
  padding:16px 20px;border-radius:0 8px 8px 0;margin:24px 0;
  font-size:0.93rem;line-height:1.6;
}
.callout strong{color:var(--navy)}
.callout-urgent{background:#FEF2F2;border-left-color:#DC2626}
.callout-urgent strong{color:#991B1B}

/* Info card */
.info-card{
  background:var(--stone);border-radius:var(--radius);padding:20px 24px;margin:24px 0;
}
.info-card h3{margin-top:0;font-size:1rem}

/* Resource table */
.resource-table{width:100%;border-collapse:collapse;margin:20px 0;font-size:0.9rem}
.resource-table th{
  background:var(--navy);color:var(--white);text-align:left;
  padding:10px 14px;font-weight:600;font-size:0.82rem;
  letter-spacing:0.02em;
}
.resource-table td{padding:10px 14px;border-bottom:1px solid var(--border);vertical-align:top}
.resource-table tr:nth-child(even) td{background:var(--stone)}
.resource-table a{color:var(--navy);font-weight:600}

/* — TRUST BAR — */
.trust-bar{
  background:var(--navy);padding:28px 24px;text-align:center;
}
.trust-bar-inner{
  max-width:var(--max-w-wide);margin:0 auto;
  display:flex;gap:32px;justify-content:center;flex-wrap:wrap;
  color:rgba(255,255,255,0.6);font-size:0.82rem;
}
.trust-bar-inner strong{color:var(--amber);display:block;font-size:0.95rem;margin-bottom:2px}

/* — MISSION STRIP (The Prepared style) — */
.mission{
  padding:40px 24px;text-align:center;
  border-top:1px solid var(--border);
}
.mission p{
  max-width:540px;margin:0 auto;font-size:0.92rem;
  color:var(--text-light);line-height:1.7;
}
.mission a{color:var(--amber);font-weight:600;text-decoration:none}

/* — FOOTER — */
.site-footer{
  background:var(--navy);color:#7B8A9E;padding:40px 24px;
  font-size:0.82rem;line-height:1.7;margin-top:0;
}
.footer-inner{max-width:var(--max-w-wide);margin:0 auto;display:flex;gap:40px;flex-wrap:wrap}
.footer-col{flex:1;min-width:160px}
.footer-col h4{color:var(--white);font-size:0.85rem;margin-bottom:10px;font-weight:600}
.footer-col a{color:#7B8A9E;text-decoration:none;display:block;padding:2px 0}
.footer-col a:hover{color:var(--amber)}
.footer-bottom{
  max-width:var(--max-w-wide);margin:24px auto 0;padding-top:18px;
  border-top:1px solid #2E3A52;font-size:0.78rem;color:#4B5B72;
}

/* Print */
@media print{
  .site-header,.site-footer,.trust-bar,.site-nav{display:none}
  .article-wrap{max-width:100%;padding:0}
  .callout{border:1px solid #ccc;background:#f9f9f9}
}

/* Responsive */
@media(max-width:700px){
  .hero{padding:36px 20px 32px}
  .article-wrap{padding:28px 18px 48px}
  .guide-list{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;gap:24px}
  .resource-table{font-size:0.82rem}
  .resource-table th,.resource-table td{padding:8px 10px}
  .trust-bar-inner{gap:20px}
}
