/* Colton & Sons — Trades family, skin B (heritage), palette navy-gold.
   Tokens from design/tokens/trades.json. One radius (4px), one soft shadow, no cards. */

:root {
  --field: #10214b;
  --field-deep: #0b1734;
  --accent: #d4a017;
  --accent-ink: #7c5c08;
  --paper: #f7f6f2;
  --white: #ffffff;
  --ink: #1c2434;
  --muted: #5b6474;
  --radius: 4px;
  --shadow: 0 2px 14px rgba(16, 33, 75, 0.1);
  --display: "Fraunces", Georgia, serif;
  --body: "Source Sans 3", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--accent);
  color: var(--field-deep);
  font-weight: 600;
  font-size: 15px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.topbar a { text-decoration: none; font-weight: 700; }

/* ---------- header ---------- */
header.site {
  background: var(--white);
  border-bottom: 1px solid #e5e2d9;
  position: sticky;
  top: 0;
  z-index: 20;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.wordmark { line-height: 1.1; }
.wordmark .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  color: var(--field);
  letter-spacing: 0.2px;
}
.wordmark .sub {
  font-size: 12.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--muted);
}
.call-btn {
  background: var(--field);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.call-btn:hover { background: var(--field-deep); }

/* ---------- hero ---------- */
.hero { background: var(--white); }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-ink);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  color: var(--field);
  margin-bottom: 20px;
}
.hero .lede { font-size: 19px; color: var(--muted); max-width: 46ch; margin-bottom: 30px; }
.cta-row { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; flex-wrap: wrap; }
.cta {
  background: var(--accent);
  color: var(--field-deep);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cta:hover { filter: brightness(1.05); }
.cta-quiet { font-weight: 600; text-decoration: none; color: var(--field); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.microproof { font-size: 15px; color: var(--muted); }
.microproof strong { color: var(--ink); }
.hero-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.photo-note { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ---------- proof strip ---------- */
.proof {
  background: var(--field);
  color: var(--white);
}
.proof .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 32px;
  padding-top: 22px;
  padding-bottom: 22px;
  text-align: center;
}
.proof .item strong { display: block; font-size: 18px; color: var(--accent); }
.proof .item span { font-size: 14.5px; opacity: 0.92; }

/* ---------- sections ---------- */
section.block { padding: 72px 0; }
.section-eyebrow {
  font-size: 13px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-ink);
  margin-bottom: 10px;
}
h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--field);
  margin-bottom: 12px;
}
.rule { width: 56px; height: 3px; background: var(--accent); border: 0; margin: 18px 0 34px; }

/* services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 56px;
}
.service { border-top: 1px solid #e3dfd3; padding-top: 18px; }
.service h3 { font-size: 18.5px; margin-bottom: 5px; color: var(--field); }
.service p { color: var(--muted); font-size: 16px; }

/* reviews */
.reviews { background: var(--white); }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
blockquote { border-left: 3px solid var(--accent); padding-left: 22px; }
blockquote p {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 14px;
}
blockquote footer { font-size: 15px; color: var(--muted); font-weight: 600; }
.stars { color: var(--accent); letter-spacing: 2px; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid figure img {
  border-radius: var(--radius);
  height: 260px;
  width: 100%;
  object-fit: cover;
}
.gallery-grid figcaption { font-size: 14.5px; color: var(--muted); margin-top: 9px; }

/* team note */
.team p { max-width: 62ch; color: var(--muted); font-size: 17.5px; }
.team p strong { color: var(--ink); }

/* ---------- cta band ---------- */
.cta-band { background: var(--field); color: var(--white); text-align: center; }
.cta-band .wrap { padding-top: 64px; padding-bottom: 64px; }
.cta-band h2 { color: var(--white); }
.cta-band .phone {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin: 14px 0 8px;
}
.cta-band .hours { opacity: 0.9; font-size: 16px; }

/* ---------- footer ---------- */
footer.site {
  background: var(--field-deep);
  color: #c6cbd8;
  font-size: 15px;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 42px;
}
footer.site a { color: var(--white); text-decoration: none; font-weight: 600; }

/* ---------- mobile ---------- */
.mobile-call { display: none; }
@media (max-width: 860px) {
  .wordmark .name { font-size: 21px; }
  .call-btn { padding: 9px 14px; font-size: 15px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 34px; padding-top: 40px; padding-bottom: 48px; }
  .hero-photo img { height: 340px; }
  .proof .wrap { grid-template-columns: 1fr 1fr; }
  .services-grid, .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure img { height: 220px; }
  .topbar .wrap { justify-content: center; text-align: center; }
  .topbar .addr { display: none; }
  section.block { padding: 52px 0; }
  body { padding-bottom: 64px; }
  .mobile-call {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: var(--accent);
    color: var(--field-deep);
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding: 16px;
    text-decoration: none;
    z-index: 50;
    box-shadow: 0 -2px 14px rgba(16, 33, 75, 0.18);
  }
}
