/* ============================================================
   Blended & Blessed Construction — V3 (clean conventional)
   Same skeleton as BP Lawn / Splinter Creek / Exterior Solutions.
   Differentiated via palette + typography + hero composition.
   Palette: warm cream / muted rust / warm slate / charcoal
   Typography: Source Serif 4 + Inter
   ============================================================ */

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

:root {
  --bg:           #faf6ef;
  --bg-panel:     #f1ebe0;
  --bg-deep:      #ece5d3;
  --paper:        #ffffff;
  --rust:         #b85638;     /* primary accent — warm, grounded */
  --rust-d:       #94422a;
  --slate:        #3a4554;     /* secondary depth */
  --slate-soft:   #5a6573;
  --ink:          #1c1c1c;
  --ink-soft:     #38383a;
  --muted:        #6b6660;
  --line:         #e1d8c5;
  --line-soft:    #ece4d2;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.08;
  color: var(--ink);
}

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   ANNOUNCE BAR (slim)
   ============================================================ */
.announce {
  background: var(--slate);
  color: var(--bg);
  padding: 9px 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.announce .sep { opacity: 0.4; }
.announce a { color: #f0c8b0; font-weight: 600; }
.announce a:hover { color: var(--bg); }

/* ============================================================
   NAV
   ============================================================ */
nav.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.nav-logo .sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 4px;
  font-weight: 600;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-menu .link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-menu .link:hover { color: var(--rust); }
.nav-cta {
  background: var(--rust);
  color: #ffffff;
  padding: 9px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.18s ease;
}
.nav-cta:hover { background: var(--rust-d); }
.nav-cta svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================================
   HERO — split image + text
   ============================================================ */
.hero {
  padding: 60px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text { padding: 8px 0; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-tag .bar {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--rust);
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 70px);
  margin-bottom: 22px;
  font-weight: 600;
  line-height: 1.04;
}
.hero h1 .em {
  font-style: italic;
  color: var(--rust);
  font-weight: 500;
}
.hero .lead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 4px;
  border: 0;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn-primary {
  background: var(--rust);
  color: #ffffff;
}
.btn-primary:hover { background: var(--rust-d); }
.btn-outline {
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--slate);
}
.btn-outline:hover { background: var(--slate); color: var(--bg); }
.btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--bg-panel);
  background-image: url('https://images.unsplash.com/photo-1761679296920-b48e07e9e267?w=1400&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(28, 28, 28, 0.06);
  border-radius: 4px;
  pointer-events: none;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--bg-panel);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 32px;
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-row .item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.trust-row .star { color: var(--rust); font-size: 14px; }
.trust-row .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--line);
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec-head {
  text-align: center;
  margin-bottom: 50px;
}
.sec-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 14px;
}
.sec-head h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  margin-bottom: 14px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}
.sec-head p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============================================================
   SERVICES — clean icon grid
   ============================================================ */
.services {
  padding: 90px 0 100px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 30px 26px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  border-color: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -16px rgba(28, 28, 28, 0.18);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-panel);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  margin-bottom: 4px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
}
.service-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.services-foot {
  text-align: center;
  margin-top: 44px;
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
}
.services-foot strong {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--bg-panel);
  padding: 90px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.about-side .sec-label { margin-bottom: 16px; }
.about-side h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 600;
}
.about-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong {
  color: var(--ink);
  font-weight: 600;
}
.about-rule {
  width: 48px;
  height: 2px;
  background: var(--rust);
  margin-bottom: 20px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 90px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 32px 28px;
}
.contact-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 600;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 16px;
  color: var(--ink-soft);
}
.contact-detail:last-child { border-bottom: 0; }
.contact-detail .icon {
  width: 22px;
  height: 22px;
  color: var(--rust);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail .icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail .label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-detail .value {
  display: block;
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.contact-detail a.value:hover { color: var(--rust); }

.quote-form {
  background: var(--slate);
  color: var(--bg);
  border-radius: 4px;
  padding: 32px 28px;
}
.quote-form .sec-label { color: #f0c8b0; }
.quote-form h3 { color: var(--bg); font-size: 24px; margin-bottom: 10px; font-weight: 600; }
.quote-form p { font-size: 15px; color: rgba(250, 246, 239, 0.78); margin-bottom: 22px; line-height: 1.55; }
.quote-form .field { margin-bottom: 14px; }
.quote-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.6);
  margin-bottom: 6px;
  font-weight: 600;
}
.quote-form input, .quote-form textarea {
  width: 100%;
  background: rgba(250, 246, 239, 0.08);
  border: 1px solid rgba(250, 246, 239, 0.18);
  color: var(--bg);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 4px;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(250, 246, 239, 0.42); }
.quote-form textarea { resize: vertical; min-height: 90px; }
.quote-form .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }
.quote-form .or {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(250, 246, 239, 0.55);
  letter-spacing: 0.04em;
}
.quote-form .or a { color: #f0c8b0; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.foot {
  background: var(--bg-deep);
  padding: 44px 0 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.foot-row {
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px; margin-bottom: 26px;
}
.foot-name {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
}
.foot-name .sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-top: 6px;
}
.foot-contact { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.foot-contact a { color: var(--ink-soft); font-weight: 500; }
.foot-contact a:hover { color: var(--rust); }
.foot-credit {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}
.foot-credit .ppd {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.foot-credit .ppd a { color: var(--slate); font-weight: 600; }
.foot-credit .ppd a:hover { color: var(--rust); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 720px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .hero-image { aspect-ratio: 5 / 6; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1.6fr; gap: 56px; }
  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 30px; }
}

@media (min-width: 1024px) {
  .hero { padding: 90px 0 110px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 719px) {
  .nav-menu .link { display: none; }
  .nav-menu .nav-cta { padding: 7px 12px; font-size: 13px; }
  .hero { padding: 40px 0 60px; }
  .hero-text { text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .services, .about, .contact { padding: 60px 0; }
  .sec-head { margin-bottom: 36px; }
  .foot-row { flex-direction: column; gap: 16px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  position: fixed; top: 8px; left: 8px;
  padding: 8px 14px;
  background: var(--slate); color: var(--bg);
  z-index: 999; font-size: 13px; border-radius: 4px;
}
:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
