/* Foreman Sites - Style C: Bold Industrial
   Near-white background, hard edges, thick black borders, offset shadows,
   huge condensed uppercase display type (Anton) + Space Grotesk body.
   One loud accent color per niche via COLOR_* custom properties. */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Space Grotesk', var(--font-body);
  color: #0a0a0a;
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Anton', var(--font-heading);
  line-height: 0.98;
  margin: 0 0 .35em;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-weight: 400;
}

p { margin: 0 0 1em; }

a { color: var(--color-primary); text-decoration: none; }

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 84px 0; }

.section__head {
  max-width: 780px;
  margin: 0 0 52px;
}
.section__head h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}
.section__lead {
  color: #333;
  font-size: 1.08rem;
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--color-primary);
  padding: 5px 11px;
  margin-bottom: 16px;
  border: 2px solid #0a0a0a;
}
.eyebrow--light {
  color: var(--color-primary);
  background: #0a0a0a;
  border-color: var(--color-primary);
}

/* Buttons - hard edges + offset shadow */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Space Grotesk', var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 0;
  padding: 13px 24px;
  cursor: pointer;
  border: 3px solid #0a0a0a;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  font-size: .98rem;
  line-height: 1;
  box-shadow: 4px 4px 0 #0a0a0a;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #0a0a0a; }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #0a0a0a; }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--color-primary); color: #0a0a0a; }
.btn--primary:hover { background: var(--color-accent); }

.btn--outline { background: #fff; color: #0a0a0a; }
.btn--outline:hover { background: #0a0a0a; color: #fff; }

.btn--call {
  background: var(--color-primary);
  color: #0a0a0a;
  padding: 10px 16px;
  box-shadow: 3px 3px 0 #0a0a0a;
}

.icon { width: 18px; height: 18px; fill: currentColor; }

/* Watermark bar (required) */
.fs-watermark {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9px 16px;
  font-size: .84rem;
  text-align: center;
  flex-wrap: wrap;
  border-bottom: 3px solid var(--color-primary);
}
.fs-watermark__text strong { color: var(--color-primary); }
.fs-watermark__cta {
  color: #0a0a0a;
  background: var(--color-primary);
  padding: 5px 13px;
  border: 2px solid #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}
.fs-watermark__cta:hover { background: #fff; }

/* Header - solid black bar */
.header {
  position: sticky;
  top: 40px;
  z-index: 100;
  background: #0a0a0a;
  border-bottom: 3px solid var(--color-primary);
}
.header--scrolled { box-shadow: 0 6px 0 -3px rgba(0,0,0,.25); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Anton', var(--font-heading);
  text-transform: uppercase;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: var(--color-primary);
  color: #0a0a0a;
  border: 2px solid #fff;
  font-size: 1rem;
  font-family: 'Anton', var(--font-heading);
}
.header__name { font-size: 1.25rem; letter-spacing: .02em; }
.header__nav { display: none; gap: 26px; }
.header__nav a {
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.header__nav a:hover { color: var(--color-primary); }

/* Hero - full-bleed image, offset text block bottom-left */
.hero {
  position: relative;
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 5px solid #0a0a0a;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--color-primary-dark), #0a0a0a 70%);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 84px;
}
.hero__block {
  background: #0a0a0a;
  border: 4px solid var(--color-primary);
  box-shadow: 10px 10px 0 var(--color-primary);
  padding: 30px 30px 34px;
  max-width: 660px;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--color-primary);
  color: #0a0a0a;
  padding: 6px 12px;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.stars { color: #0a0a0a; letter-spacing: 2px; font-size: 1rem; }
.hero__rating .stars { color: #0a0a0a; }
.stars--lg { font-size: 1.4rem; color: var(--color-primary); }
.hero__headline {
  font-size: clamp(2.6rem, 8vw, 5rem);
  color: #fff;
  margin-bottom: 16px;
}
.hero__sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,.86);
  margin-bottom: 26px;
  max-width: 540px;
}
.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__badges {
  position: absolute;
  z-index: 3;
  bottom: 0; left: 0; right: 0;
  list-style: none;
  padding: 0; margin: 0;
  display: none;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--color-primary);
  color: #0a0a0a;
  border: 2px solid #0a0a0a;
  font-size: .7rem;
  font-weight: 800;
  flex: none;
}

/* Services - numbered big numerals */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: svc;
  border: 3px solid #0a0a0a;
  border-bottom: none;
}
.service-card {
  counter-increment: svc;
  position: relative;
  background: var(--color-surface);
  border-bottom: 3px solid #0a0a0a;
  padding: 30px 26px 30px 96px;
  transition: background .15s ease;
}
.service-card::before {
  content: counter(svc, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 24px;
  font-family: 'Anton', var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary);
  -webkit-text-stroke: 1.5px #0a0a0a;
}
.service-card:hover { background: var(--color-primary); }
.service-card__icon {
  display: none;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: .3em;
}
.service-card p { color: #333; margin: 0; font-size: .98rem; }

/* Accent marquee strip */
.strip {
  background: var(--color-primary);
  border-top: 4px solid #0a0a0a;
  border-bottom: 4px solid #0a0a0a;
  overflow: hidden;
  padding: 14px 0;
}
.strip__track {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  font-family: 'Anton', var(--font-heading);
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #0a0a0a;
  letter-spacing: .03em;
  animation: strip-scroll 26s linear infinite;
}
.strip__dot { color: #0a0a0a; font-size: .7rem; }
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip__track { animation: none; justify-content: center; flex-wrap: wrap; white-space: normal; }
}

/* Why */
.why { background: var(--color-bg); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 3px solid #0a0a0a;
}
.why__item {
  padding: 28px 24px;
  border-bottom: 3px solid #0a0a0a;
  background: var(--color-surface);
}
.why__item:last-child { border-bottom: none; }
.why__icon { font-size: 2rem; margin-bottom: 10px; }
.why__item h3 { font-size: 1.35rem; }
.why__item p { color: #333; font-size: .96rem; margin: 0; }

/* Gallery - tight mosaic, hard edges */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  border: 3px solid #0a0a0a;
  padding: 10px;
  background: #0a0a0a;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface);
  border: 2px solid #0a0a0a;
}
.gallery__ph { position: absolute; inset: 0; }
.gallery__label {
  position: absolute;
  left: 0; bottom: 0;
  background: #0a0a0a;
  color: #fff;
  padding: 6px 12px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
}
/* Mosaic emphasis: first + last span bigger on wide screens */
@media (min-width: 860px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; }
  .gallery__item { aspect-ratio: auto; min-height: 180px; }
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery__item:nth-child(6) { grid-column: span 2; }
}

/* Reviews - stark black-border cards */
.reviews { background: var(--color-surface); }
.reviews__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0a0a0a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 10px;
  font-size: .95rem;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.review-card {
  background: #fff;
  border: 3px solid #0a0a0a;
  padding: 26px 24px;
  box-shadow: 6px 6px 0 #0a0a0a;
}
.review-card__stars { color: var(--color-primary); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.1rem; -webkit-text-stroke: .5px #0a0a0a; }
.review-card__text { font-style: normal; margin-bottom: 18px; color: #111; font-size: 1.02rem; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #0a0a0a;
  font-weight: 700;
  font-family: 'Anton', var(--font-heading);
  border: 2px solid #0a0a0a;
}
.review-card__name { font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.review-card__meta { font-size: .8rem; color: #555; }

/* Areas */
.areas { background: var(--color-bg); }
.areas__list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 820px;
  border: 3px solid #0a0a0a;
}
.areas__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-surface);
  padding: 15px 18px;
  border-right: 3px solid #0a0a0a;
  border-bottom: 3px solid #0a0a0a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: .92rem;
}
.areas__list li:nth-child(2n) { border-right: none; }
.areas__pin { color: var(--color-primary); -webkit-text-stroke: .5px #0a0a0a; }

/* Giant phone CTA */
.callout {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  border-top: 5px solid var(--color-primary);
  border-bottom: 5px solid var(--color-primary);
}
.callout__inner { max-width: 900px; margin: 0 auto; }
.callout__title { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.callout__phone {
  display: inline-block;
  font-family: 'Anton', var(--font-heading);
  font-size: clamp(3rem, 11vw, 6.5rem);
  line-height: 1;
  color: var(--color-primary);
  -webkit-text-stroke: 2px #fff;
  margin: 8px 0 18px;
  letter-spacing: .01em;
}
.callout__phone:hover { color: #fff; -webkit-text-stroke: 2px var(--color-primary); }
.callout__note { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; }

/* Quote */
.quote { background: var(--color-primary); color: #0a0a0a; border-bottom: 5px solid #0a0a0a; }
.quote__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.quote__copy h2 { color: #0a0a0a; font-size: clamp(2rem, 5vw, 3.2rem); }
.quote__copy p { color: #0a0a0a; }
.quote__copy .eyebrow { background: #0a0a0a; color: var(--color-primary); border-color: #0a0a0a; }
.quote__points { list-style: none; padding: 0; margin: 20px 0; }
.quote__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}
.quote__phone {
  display: inline-block;
  margin-top: 8px;
  color: #0a0a0a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.quote__form {
  background: #fff;
  border: 4px solid #0a0a0a;
  box-shadow: 10px 10px 0 #0a0a0a;
  padding: 30px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2.5px solid #0a0a0a;
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  color: #111;
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 4px 4px 0 var(--color-primary);
}
.quote__fineprint { font-size: .8rem; color: #555; text-align: center; margin: 14px 0 0; }

/* Footer */
.footer {
  background: #0a0a0a;
  color: #cfcfcf;
  padding-top: 58px;
  border-top: 5px solid var(--color-primary);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-bottom: 40px;
}
.footer__brand {
  font-family: 'Anton', var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.footer__tag { color: #a5a5a5; }
.footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.footer__nap a { color: var(--color-primary); }
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 6px;
}
.footer__bar {
  border-top: 2px solid rgba(255,255,255,.15);
  padding: 18px 0;
  font-size: .84rem;
}
.footer__bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__credit a { color: var(--color-primary); }

/* Mobile call bar */
.mobile-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-primary);
  color: #0a0a0a;
  font-family: 'Anton', var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 15px;
  border-top: 3px solid #0a0a0a;
}

/* Responsive */
@media (max-width: 640px) {
  .fs-watermark { font-size: .76rem; padding: 8px 12px; gap: 8px; }
  .header { top: 66px; }
  .hero__block { box-shadow: 6px 6px 0 var(--color-primary); }
}

@media (min-width: 720px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-right: 3px solid #0a0a0a; }
  .service-card:nth-child(2n) { border-right: none; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__item { border-right: 3px solid #0a0a0a; }
  .why__item:nth-child(2n) { border-right: none; }
  .why__item:nth-last-child(2) { border-bottom: none; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .header__nav { display: flex; }
  .mobile-call { display: none; }
  .quote__inner { grid-template-columns: 1.05fr .95fr; }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 960px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(2n) { border-right: 3px solid #0a0a0a; }
  .service-card:nth-child(3n) { border-right: none; }
  .why__grid { grid-template-columns: repeat(4, 1fr); }
  .why__item { border-bottom: none; }
  .why__item:nth-child(2n) { border-right: 3px solid #0a0a0a; }
  .why__item:nth-child(4n) { border-right: none; }
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
}
