/* ═══════════════════════════════════════════════════════════════
   GREEN EMPIRE BUILDERS — DESIGN REFINEMENTS
   Inter font, accent color, Diamond Ridge-inspired improvements
   ═══════════════════════════════════════════════════════════════ */

/* ── Accent color token ─────────────────────────────────────── */
:root {
  --accent:       #C17F3A;
  --accent-dark:  #A56B2C;
  --ink:          #080C08;
  --warm-bg:      #F7F8F5;
  --rule:         #D6DDD2;
}

/* ── Hero — letter-spacing & size refinement ────────────────── */
.hero { min-height: 100vh; }
.hero-brand-name { display: none; }
.hero h1 {
  letter-spacing: 3px;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1.1;
}
.hero-badge {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 2px;
  padding: 5px 14px;
  margin-bottom: 24px;
  display: inline-block;
}
.hero-trust span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Headlines — letter-spacing only ───────────────────────── */
h2 { letter-spacing: 1.5px; }
h3 { letter-spacing: 0.5px; }

/* ── Stats bar ──────────────────────────────────────────────── */
.stat { border-right: 1px solid rgba(255,255,255,.12); padding: 36px 0; }
.stat:last-child { border-right: none; }
.stat-n { font-size: 3rem; font-weight: 800; display: block; line-height: 1; margin-bottom: 6px; }
.stat-l { font-size: 0.62rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,.55); }

/* ── Eyebrow labels ─────────────────────────────────────────── */
.eyebrow { letter-spacing: 0.18em; }
.eyebrow-light { letter-spacing: 0.18em; color: var(--green-light); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn { letter-spacing: 0.1em; font-size: 0.78rem; font-weight: 600; border-radius: 2px; }

/* Primary — slightly brighter green */
.btn-primary { background: #276338; }
.btn-primary:hover { background: #1F4D2B; }

/* Outlined green — secondary CTA */
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
}
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* ── Contact cards ──────────────────────────────────────────── */
.contact-cards-section { padding: 68px 0; }
.contact-card {
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.15);
  padding: 40px 28px;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.contact-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.contact-card h3 { font-size: 1.05rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.contact-card p { font-size: 0.88rem; margin-bottom: 20px; color: rgba(255,255,255,.7); line-height: 1.6; }
.icon-circle {
  width: 60px; height: 60px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  transition: border-color .2s;
}
.contact-card:hover .icon-circle { border-color: rgba(255,255,255,.65); }

/* ── Difference section ─────────────────────────────────────── */
.difference-section { background: #111511; padding: 80px 0; }
.difference-grid { counter-reset: diff; }
.difference-card {
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.08);
  padding: 44px 36px;
  position: relative;
  counter-increment: diff;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.difference-card:hover { border-color: var(--green-light); background: rgba(255,255,255,.025); }
.difference-card::before {
  content: counter(diff, decimal-leading-zero);
  font-size: 6.5rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.1;
  position: absolute;
  bottom: -10px; right: 16px;
  line-height: 1;
  pointer-events: none;
}
.icon-circle-outline { display: none; }
.difference-card h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.difference-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}
.section-header-light h2 { color: #fff; letter-spacing: 2px; text-transform: uppercase; }

/* ── Service cards ──────────────────────────────────────────── */
.service-card {
  border-radius: 2px;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  box-shadow: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.09);
}
.card-link { font-size: 0.75rem; letter-spacing: 0.1em; font-weight: 600; color: var(--green); }

/* ── Reviews ────────────────────────────────────────────────── */
.review-card { border-radius: 2px; border-left: 3px solid var(--accent); }
.review-text { font-size: 1rem; line-height: 1.7; }
.review-stars { color: var(--accent); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-question {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.faq-item { border-radius: 2px; }

/* ── Consultation section ───────────────────────────────────── */
.consultation-section { padding: 88px 0; }
.consultation-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.consultation-text p { line-height: 1.8; color: rgba(255,255,255,.78); }
.consult-list li {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.8);
  padding: 5px 0;
}
.booking-card { border-radius: 2px; }

/* ── Accent uses across site ────────────────────────────────── */
.footer-phone { color: var(--green-light); }
a.card-link:hover { color: var(--accent); }
.btn-outline { border-color: var(--green); color: var(--green); border-radius: 2px; }
.btn-outline:hover { background: var(--green); color: #fff; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: #0a0c0a; border-top: 1px solid rgba(255,255,255,.05); }
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.35);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 18px;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); font-size: 0.72rem; }

/* ── Page hero (interior pages) ─────────────────────────────── */
.page-hero h1 { letter-spacing: 2px; text-transform: uppercase; }
.cta-banner h2 { letter-spacing: 2px; text-transform: uppercase; }
.section-light { background: var(--warm-bg); }
.breadcrumbs { background: var(--warm-bg); border-bottom: 1px solid var(--rule); font-size: 0.75rem; }

/* ── City pills ─────────────────────────────────────────────── */
.city-pill { border-radius: 2px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; }

/* ── Hero slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
  padding: 0;
}
.hero-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}
.hero-dot:hover:not(.active) { border-color: rgba(255,255,255,.85); }

/* ── Our Work / Recent Projects */
.our-work-section { background: var(--warm-bg); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.work-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.work-item:hover img { transform: scale(1.04); }
.work-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.work-item-placeholder {
  background: #141814;
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-item-placeholder .work-item-label {
  position: static;
  background: none;
  color: rgba(255,255,255,.25);
  text-align: center;
  font-size: 0.65rem;
}
@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ── Hero brand switcher */
.hero-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 6px 10px;
  width: fit-content;
}
.hero-switcher-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.45);
  padding-right: 4px;
}
.hero-switch-btn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  padding: 5px 14px;
  border-radius: 3px;
  transition: background .2s, color .2s;
}
.hero-switch-btn.active {
  background: var(--green-light);
  color: #fff;
}
.hero-switch-btn:hover:not(.active) {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { letter-spacing: 1.5px; }
  .difference-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .consultation-content { grid-template-columns: 1fr; gap: 40px; }
}
