/* =========================================================
   Precision Builders & Design — Site Stylesheet
   Brand: Navy + warm gold, premium construction feel
   Mobile-first, no framework, fast load
   ========================================================= */

:root {
  /* Real brand colors from the Facebook page logo:
     dark charcoal/near-black + warm orange-gold + white */
  --navy: #1F2937;
  --navy-dark: #111418;
  --navy-light: #2B3441;
  --gold: #E8A33D;
  --gold-dark: #C28428;
  --gold-light: #F2C067;
  --charcoal: #1F2937;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --white: #FFFFFF;
  --success: #15803D;
  --danger: #B91C1C;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.05);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.18);

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold-dark); }
button { font: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--gray-900); line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: .8rem; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); margin-bottom: .5rem; }
h4 { font-size: 1.1rem; margin-bottom: .35rem; }
p  { margin-bottom: 1rem; color: var(--gray-700); }
.lede { font-size: 1.15rem; color: var(--gray-700); max-width: 60ch; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: .7rem;
}

/* Layout helpers */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--tight { padding: clamp(36px, 6vw, 64px) 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.85); }
.section--gray { background: var(--gray-50); }

.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.center { text-align: center; }
.max-prose { max-width: 70ch; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--navy-dark); }
.btn--primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: var(--navy); color: var(--white); }
.btn--secondary:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: var(--white); color: var(--navy); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--gray-100);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.brand:hover { color: var(--navy); }
.brand__mark {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff url('/img/logo-mark.jpg') center/cover no-repeat;
  box-shadow: var(--shadow-md);
  text-indent: -9999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(0,0,0,.06);
  transition: transform .15s ease;
}
.brand:hover .brand__mark { transform: scale(1.02); }
/* The real logo already contains the wordmark — hide the redundant adjacent text */
.brand__name { display: none; }
/* Tighter header now that logo is bigger */
.site-header__inner { padding: 8px 0; }
/* Footer brand mark: slightly smaller + lighter border on dark bg */
.site-footer .brand__mark { width: 84px; height: 84px; border-color: rgba(255,255,255,.15); }
/* Mobile: scale logo down so it doesn't dominate */
@media (max-width: 700px) {
  .brand__mark { width: 72px; height: 72px; }
  .site-header__inner { padding: 6px 0; }
}
.brand__name { display: flex; flex-direction: column; }
.brand__name small { font-size: .72rem; font-weight: 500; color: var(--gray-500); letter-spacing: .06em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 14px;
  font-weight: 500;
  font-size: .97rem;
  color: var(--gray-700);
  border-radius: 8px;
}
.nav a:hover { color: var(--navy); background: var(--gray-100); }
.nav a.active { color: var(--navy); }
.nav__cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--navy);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 14px; gap: 4px; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-md); }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 12px 14px; }
  .nav__cta { width: 100%; margin: 8px 0 0; }
  .nav-toggle { display: inline-flex; }
}

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(14,42,71,.86) 0%, rgba(8,26,46,.92) 100%),
    var(--navy);
  color: var(--white);
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,169,97,.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201,169,97,.10) 0%, transparent 40%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; gap: clamp(32px, 6vw, 64px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.15fr 1fr; } }

.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 .hl { color: var(--gold); }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: rgba(255,255,255,.88); max-width: 56ch; margin-bottom: 1.7rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.5rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 18px 28px; color: rgba(255,255,255,.85); font-size: .92rem; }
.hero__badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero__badges svg { width: 18px; height: 18px; color: var(--gold); }
.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
  border: 1px solid rgba(201,169,97,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image-placeholder { padding: 24px; text-align: center; font-style: italic; }

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
}
.trust-bar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; }
.trust-bar__item {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gray-700); font-size: .92rem; font-weight: 500;
}
.trust-bar__item svg { width: 20px; height: 20px; color: var(--gold-dark); flex-shrink: 0; }

/* Section heading */
.section-heading { text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }
.section-heading p { max-width: 60ch; margin: 0 auto; }

/* Service cards */
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: all .2s ease;
  box-shadow: var(--shadow-sm);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card h3 { color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: .97rem; margin-bottom: 14px; flex-grow: 1; }
.svc-card a.svc-card__link { color: var(--gold-dark); font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-card a.svc-card__link:hover { color: var(--navy); }
.svc-card a.svc-card__link::after { content: "→"; transition: transform .15s ease; }
.svc-card a.svc-card__link:hover::after { transform: translateX(4px); }

/* Why-us */
.why-card { padding: 8px; }
.why-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.why-card__icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1.15rem; }
.why-card p { font-size: .96rem; }

/* Before/After slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: var(--gray-100);
  box-shadow: var(--shadow-md);
}
.ba-slider__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-slider__after-wrap {
  position: absolute; inset: 0;
  width: 50%;
  overflow: hidden;
}
.ba-slider__after-wrap img { width: calc(100% * 2); }
.ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.ba-slider__handle::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.ba-slider__handle::after {
  content: "⇆";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
}
.ba-slider__label {
  position: absolute; top: 14px;
  padding: 5px 12px;
  background: rgba(14,42,71,.85);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  pointer-events: none;
}
.ba-slider__label--before { left: 14px; }
.ba-slider__label--after  { right: 14px; background: rgba(201,169,97,.95); color: var(--navy-dark); }
.ba-caption { margin-top: 14px; text-align: center; color: var(--gray-700); font-size: .95rem; }

/* Gallery grid (paired before/after thumbnails) */
.gallery-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Simple project photo card (no slider) */
.project-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
  background: var(--gray-100);
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-photo:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Testimonials */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 22px;
  font-size: 4rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial p { margin: 14px 0 16px; font-size: 1.02rem; color: var(--gray-700); }
.testimonial__stars { color: var(--gold); letter-spacing: 2px; }
.testimonial__author { font-weight: 600; color: var(--navy); }
.testimonial__author small { display: block; font-weight: 400; color: var(--gray-500); font-size: .85rem; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,.2), transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: .6rem; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 50ch; margin: 0 auto 1.5rem; }
.cta-banner__buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Service area */
.area-list { display: grid; gap: 10px 24px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); list-style: none; padding: 0; }
.area-list li { padding: 10px 0; border-bottom: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.area-list li::before { content: "📍"; margin-right: 10px; }
.area-list a { color: var(--charcoal); font-weight: 500; }
.area-list a:hover { color: var(--gold-dark); }

/* Contact form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.form-row { display: grid; gap: 16px; }
.form-row.two-col { grid-template-columns: 1fr; }
@media (min-width: 600px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-weight: 600; color: var(--gray-700); font-size: .92rem; }
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,.2);
}
.form-field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form-field .hint { font-size: .82rem; color: var(--gray-500); }
.form-field.required label::after { content: " *"; color: var(--danger); }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  padding: 56px 0 24px;
}
.site-footer h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--gold); }
.site-footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__col ul { list-style: none; padding: 0; }
.site-footer__col li { padding: 5px 0; font-size: .94rem; }
.site-footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.site-footer__bottom a { font-size: .85rem; }
.site-footer__nap { font-size: .94rem; line-height: 1.8; }
.site-footer__nap strong { color: var(--white); }

/* Floating mobile CTA */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--navy);
  display: none;
  padding: 10px 12px;
  gap: 10px;
  box-shadow: 0 -4px 12px rgba(0,0,0,.15);
}
.mobile-cta .btn { flex: 1; padding: 12px 8px; font-size: .92rem; }
@media (max-width: 700px) { .mobile-cta { display: flex; } body { padding-bottom: 70px; } }

/* Pages: content blocks */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: clamp(48px, 8vw, 80px) 0 clamp(40px, 6vw, 64px);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 65ch; }
.breadcrumbs { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: var(--gold); }

.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p, .prose li { font-size: 1.04rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; }
.prose ul li, .prose ol li { margin-bottom: .4rem; color: var(--gray-700); }
.prose a { color: var(--gold-dark); text-decoration: underline; }
.prose a:hover { color: var(--navy); }

/* Two-column with sidebar (used on service pages) */
.layout-sidebar {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .layout-sidebar { grid-template-columns: 2fr 1fr; align-items: start; } }

.sidebar-card {
  position: sticky;
  top: 96px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sidebar-card h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 6px; }
.sidebar-card ul { list-style: none; padding: 0; margin: 14px 0 0; }
.sidebar-card ul li { padding: 6px 0; border-top: 1px solid var(--gray-100); font-size: .96rem; }
.sidebar-card ul li:first-child { border-top: 0; }

/* FAQ */
.faq details {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.faq details[open] { border-color: var(--gold-light); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 30px;
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold-dark);
  font-weight: 300;
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step__num {
  counter-increment: step;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 4px; }
.step p { margin: 0; font-size: .98rem; }

/* Utility */
.mt-0 { margin-top: 0 !important; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Print */
@media print { .site-header, .site-footer, .mobile-cta { display: none; } }
