/* Foreman Sites - Local Service Business Template */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--color-text);
}

p { margin: 0 0 1em; }

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

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

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

.section {
  padding: 72px 0;
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section__head h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.section__lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--color-accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 22px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-size: 1rem;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--color-primary);
}
.btn--primary:hover { background: var(--color-primary-dark); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); }

.btn--call {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  padding: 10px 18px;
}

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

/* Watermark */
.fs-watermark {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #111827, #1f2937);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9px 16px;
  font-size: .86rem;
  text-align: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.fs-watermark__text strong { color: var(--color-accent); }
.fs-watermark__cta {
  color: #fff;
  background: var(--color-primary);
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}
.fs-watermark__cta:hover { background: var(--color-primary-dark); }

/* Header */
.header {
  position: sticky;
  top: 40px;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow .2s ease;
}
.header--scrolled { box-shadow: 0 6px 20px -12px rgba(0,0,0,.4); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 800;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 9px;
  font-size: .95rem;
  letter-spacing: .02em;
}
.header__name { font-size: 1.1rem; }
.header__nav { display: none; gap: 24px; }
.header__nav a {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: .95rem;
}
.header__nav a:hover { color: var(--color-primary); }

/* Hero */
.hero {
  position: relative;
  color: #fff;
  padding: 90px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--color-hero-overlay), var(--color-hero-overlay)),
    linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  z-index: -1;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, var(--color-accent) 0, transparent 45%);
  opacity: .18;
}
.hero__inner { max-width: 720px; }
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.14);
  padding: 8px 14px;
  border-radius: 40px;
  font-size: .9rem;
  margin-bottom: 22px;
}
.stars { color: #ffc327; letter-spacing: 2px; font-size: 1rem; }
.stars--lg { font-size: 1.35rem; }
.hero__headline {
  font-size: clamp(2rem, 6vw, 3.4rem);
  color: #fff;
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 30px;
  max-width: 560px;
}
.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero__badges {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,.4);
}
.service-card__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--color-text-muted); margin: 0; font-size: .96rem; }

/* Why */
.why { background: var(--color-surface); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.why__item { text-align: center; }
.why__icon { font-size: 2.2rem; margin-bottom: 10px; }
.why__item h3 { font-size: 1.15rem; }
.why__item p { color: var(--color-text-muted); font-size: .95rem; margin: 0; }

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-surface);
}
.gallery__ph {
  position: absolute;
  inset: 0;
}
.gallery__label {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  backdrop-filter: blur(2px);
}

/* Reviews */
.reviews { background: var(--color-surface); }
.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-top: 10px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.review-card {
  background: var(--color-bg);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 10px 30px -24px rgba(0,0,0,.5);
}
.review-card__stars { color: #ffc327; letter-spacing: 2px; margin-bottom: 12px; }
.review-card__text { font-style: italic; margin-bottom: 16px; }
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
}
.review-card__name { font-weight: 700; }
.review-card__meta { font-size: .82rem; color: var(--color-text-muted); }

/* Areas */
.areas__list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.areas__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-surface);
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.06);
  font-weight: 600;
}
.areas__pin { color: var(--color-primary); }

/* Quote */
.quote {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.quote__copy h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.quote__copy p { color: rgba(255,255,255,.9); }
.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: var(--color-accent);
  font-weight: 700;
}
.quote__form {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-text);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d7dce3;
  border-radius: 10px;
  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: 0 0 0 3px color-mix(in srgb, var(--color-primary) 20%, transparent);
}
.quote__fineprint {
  font-size: .8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 14px 0 0;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 56px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-bottom: 40px;
}
.footer__brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
.footer__tag { color: #94a3b8; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer__nap a { color: var(--color-accent); }
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 6px;
}
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: .85rem;
}
.footer__bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__credit a { color: var(--color-accent); }

/* 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: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px;
  box-shadow: 0 -4px 20px -8px rgba(0,0,0,.5);
}

/* Responsive */
@media (max-width: 640px) {
  .fs-watermark { font-size: .78rem; padding: 8px 12px; gap: 8px; }
  .header { top: 62px; }
}

@media (min-width: 720px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

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

@media (min-width: 960px) {
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
}
