/* Hearth — structure stylesheet. Colors come ONLY from var(--m-*) set in seasoning.css. */

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

body {
  background: var(--m-bg);
  color: var(--m-text);
  font-family: var(--m-font-body), system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--m-font-display), Georgia, serif; }

a { color: inherit; text-decoration: none; transition: color 0.18s ease; }

.wrap { max-width: 940px; margin: 0 auto; padding: 0 28px; }

/* ---- Top utility line ---- */
.topline {
  background: var(--m-heading); color: var(--m-bg);
  text-align: center; padding: 8px 20px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
}

/* ---- Navigation ---- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; border-bottom: 1px solid var(--m-line);
}
.logo {
  font-family: var(--m-font-display), Georgia, serif;
  font-size: 1.3rem; font-weight: 700; color: var(--m-heading);
}
.logo:hover { color: var(--m-accent); }
.links { display: flex; gap: 26px; }
.links a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--m-soft); }
.links a:hover { color: var(--m-accent); }
.links a[aria-current="page"] { color: var(--m-heading); }

/* ---- Eyebrow / labels ---- */
.eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; color: var(--m-accent); }
.label { font-family: var(--m-font-display), Georgia, serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0; text-transform: none; color: var(--m-heading); }

/* ---- Prominent hero ---- */
.hero { position: relative; min-height: 76vh; display: flex; align-items: flex-end; padding: 0; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 12%, var(--m-bg) 88%),
              linear-gradient(100deg, var(--m-bg) 8%, transparent 68%);
  opacity: 0.97;
}
.hero-copy { position: relative; width: 100%; padding-bottom: 58px; }
.hero-line { font-size: 0.95rem; font-weight: 600; color: var(--m-accent); }
.hero h1 {
  font-weight: 700; font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  color: var(--m-heading); margin-top: 12px; line-height: 1.04;
  max-width: 760px;
}
.hero .intro { max-width: 540px; margin-top: 18px; font-size: 1.02rem; line-height: 1.75; color: var(--m-soft); }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 32px; }
.btn {
  display: inline-block; padding: 13px 26px;
  background: var(--m-accent); color: var(--m-bg);
  font-weight: 700; font-size: 0.9rem; border-radius: 4px;
}
.btn:hover { opacity: 0.92; }
.ghost-link { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; color: var(--m-accent); }

/* ---- Service cards ---- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  padding-bottom: 70px;
}
.service-card {
  background: var(--m-surface);
  border-left: 4px solid var(--m-accent);
  padding: 26px 24px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--m-heading); }
.service-card p { margin-top: 10px; font-size: 0.87rem; line-height: 1.7; color: var(--m-soft); }

/* ---- Plain-deal rows ---- */
.plain-deal { padding-bottom: 76px; }
.deal-rows { margin-top: 22px; }
.deal-row {
  display: flex; gap: 22px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--m-line);
}
.deal-row .n { font-family: var(--m-font-display), Georgia, serif; font-weight: 700; font-size: 1.1rem; color: var(--m-accent); }
.deal-row p { font-size: 1rem; color: var(--m-text); }
.credential { margin-top: 26px; font-size: 0.75rem; letter-spacing: 0.08em; color: var(--m-faint); }

/* ---- Inner pages ---- */
.page { padding: 64px 0 80px; }
.page-title {
  font-weight: 700; font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  color: var(--m-heading); margin-top: 12px; line-height: 1.18;
}
.page-lede { max-width: 560px; margin-top: 16px; color: var(--m-soft); }

/* ---- Services page ---- */
.svc-section { margin-top: 50px; }
.svc-section h2 {
  font-size: 1.4rem; font-weight: 700; color: var(--m-heading);
  padding-left: 14px; border-left: 4px solid var(--m-accent);
  margin-bottom: 6px;
}
.svc-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 14px 0; border-bottom: 1px solid var(--m-line);
}
.svc-row .t { display: block; font-weight: 600; font-size: 1rem; color: var(--m-text); }
.svc-row .d { display: block; font-size: 0.82rem; color: var(--m-faint); }
.svc-row .p { font-family: var(--m-font-display), Georgia, serif; font-weight: 700; color: var(--m-heading); white-space: nowrap; }

/* ---- Prose (about) ---- */
.prose { max-width: 620px; margin: 0 auto; padding: 0 28px; }
.prose .page-title { margin-bottom: 32px; }
.prose p { margin-bottom: 24px; font-size: 1rem; color: var(--m-text); }
.pull {
  margin: 34px 0; padding: 6px 0 6px 22px;
  border-left: 4px solid var(--m-accent);
  font-family: var(--m-font-display), Georgia, serif;
  font-size: 1.35rem; font-style: italic; line-height: 1.5; color: var(--m-heading);
}

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.contact-card {
  background: var(--m-surface);
  border-left: 4px solid var(--m-accent);
  padding: 26px 24px;
}
.contact-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--m-heading); margin-bottom: 12px; }
.contact-card p { font-size: 0.87rem; color: var(--m-soft); margin-bottom: 10px; }
.contact-card .big-line { font-family: var(--m-font-display), Georgia, serif; font-size: 1.3rem; font-weight: 700; color: var(--m-heading); }
.hours-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 7px 0; border-bottom: 1px solid var(--m-line);
  font-size: 0.85rem; color: var(--m-text);
}
.hours-row span:last-child { font-weight: 600; color: var(--m-heading); }
.area-note { margin-top: 44px; max-width: 620px; }
.area-note p { margin-top: 10px; font-size: 0.95rem; color: var(--m-soft); }

/* ---- Hours band ---- */
.band {
  background: var(--m-heading); color: var(--m-bg);
  text-align: center; padding: 15px 24px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
}

/* ---- Footer ---- */
footer {
  text-align: center; padding: 28px;
  font-size: 0.7rem; letter-spacing: 0.16em; color: var(--m-faint);
}

/* ---- Fridge magnet ---- */
.magnet {
  display: inline-flex; flex-direction: column; gap: 2px;
  margin-top: 34px; padding: 18px 26px 14px;
  background: var(--m-surface); border: 3px solid var(--m-heading); border-radius: 14px;
  box-shadow: 0 6px 0 -2px var(--m-line), 0 10px 18px rgba(0,0,0,0.12);
  transform: rotate(-1.5deg);
}
.magnet-name { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--m-soft); }
.magnet-phone { font-family: var(--m-font-display), Georgia, serif; font-weight: 700; font-size: 2rem; color: var(--m-accent); line-height: 1.1; }
.magnet-line { font-size: 0.78rem; font-style: italic; color: var(--m-faint); }

@media (max-width: 760px) {
  .services-grid, .contact-grid { grid-template-columns: 1fr; }
  .links { gap: 16px; }
  .links a { font-size: 0.75rem; }
  .hero { min-height: 60vh; }
  .hero-actions { flex-wrap: wrap; }
  .magnet-phone { font-size: 1.5rem; }
}

/* ---- Hero photo ---- */
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-photo img { display: block; width: 100%; height: 400px; object-fit: cover; border-radius: 4px; }
@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-photo img { height: 280px; }
}

/* ---- Craft: clipboard checks, job-site tape stripe, insured shield ---- */
.deal-row .tickbox { flex: 0 0 auto; color: var(--m-accent); position: relative; top: 3px; }
.credential .shield { color: var(--m-accent); vertical-align: -6px; margin-right: 6px; }
.page-title::after {
  content: ""; display: block; width: 66px; height: 7px; margin-top: 14px;
  background: repeating-linear-gradient(-45deg, var(--m-accent) 0 6px, transparent 6px 12px);
}
.hero-copy h1::after {
  content: ""; display: block; width: 66px; height: 7px; margin-top: 16px;
  background: repeating-linear-gradient(-45deg, var(--m-accent) 0 6px, transparent 6px 12px);
}
