/* ===========================================================
   C&C Enterprises — site stylesheet
   Palette: ink black, cream paper, brass/leather accent, barn-red star
   =========================================================== */

:root {
  --ink: #1c1a17;
  --ink-soft: #3a3630;
  --paper: #f6f1e6;
  --paper-dim: #ece4d2;
  --brass: #a9793f;
  --brass-dark: #7c5726;
  --star-red: #7c2a24;
  --line: #d8cdb2;
  --max-w: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans Pro", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.2; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

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

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- header / nav ---------- */

header.site-header {
  background: var(--ink);
  border-bottom: 4px solid var(--brass);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 52px;
  width: auto;
  background: var(--paper);
  border-radius: 6px;
  padding: 4px 8px;
}

.brand-text {
  color: var(--paper);
  line-height: 1.15;
}

.brand-text .name {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand-text .motto {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: var(--paper);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 3px;
  display: inline-block;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  background: var(--brass);
  color: var(--ink);
  text-decoration: none;
}

/* ---------- hero ---------- */

.hero {
  background:
    radial-gradient(ellipse at top right, rgba(169,121,63,0.16), transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 28px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
}

.hero .kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--star-red);
  margin-bottom: 12px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-logo-panel {
  background: var(--ink);
  border: 4px solid var(--brass);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
}

.hero-logo-panel img { margin: 0 auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--star-red);
  color: var(--paper) !important;
}
.btn-primary:hover { background: #601f1a; text-decoration: none; }

.btn-secondary {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink) !important;
}
.btn-secondary:hover { background: var(--ink); color: var(--paper) !important; text-decoration: none; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

/* ---------- sections ---------- */

section { padding: 64px 0; }
section.tight { padding: 44px 0; }
section.on-dim { background: var(--paper-dim); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brass-dark);
  margin-bottom: 10px;
}

.section-head { max-width: 68ch; margin-bottom: 36px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- card grid ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brass);
  border-radius: 6px;
  padding: 26px;
}

.card .num {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--star-red);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.card ul { margin: 10px 0 0; padding-left: 1.1em; color: var(--ink-soft); }
.card ul li { margin-bottom: 4px; }

/* ---------- list rows (services) ---------- */

.svc-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: none; }
@media (max-width: 700px) { .svc-row { grid-template-columns: 1fr; gap: 8px; } }

.svc-row h3 { margin-bottom: 6px; }
.svc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brass-dark);
  background: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 3px 8px;
  margin-top: 8px;
}

/* ---------- stat strip ---------- */

.stat-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-grid .stat-num {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brass);
}
.stat-grid .stat-label {
  font-size: 0.82rem;
  color: #cfc6b3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px;
}
.contact-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:last-child { border-bottom: none; }
.contact-line .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--brass-dark);
  width: 90px;
  flex-shrink: 0;
}
.contact-line a, .contact-line span.value { font-size: 1.05rem; color: var(--ink); font-weight: 600; }

/* ---------- footer ---------- */

footer.site-footer {
  background: var(--ink);
  color: #cfc6b3;
  padding: 40px 0 26px;
  margin-top: 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
}
footer.site-footer a { color: var(--brass); }
.footer-inner .col { max-width: 340px; }
.footer-inner h4 { color: var(--paper); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;}
.copyright { border-top: 1px solid #3a3630; margin-top: 26px; padding-top: 18px; font-size: 0.78rem; color: #8f8672; text-align: center; }
