/* ============================================================
   ARRT Group — Design System v2 (from Figma Make)
   Gold: #C9A448  |  Charcoal: #1C1C1C  |  Warm-off-white: #F8F7F5
   Fonts: Barlow Condensed (headings) + Inter (body)
   ============================================================ */

/* ─── CSS Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: #F8F7F5;
  color: #1C1C1C;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ─── Tokens ─── */
:root {
  --gold: #C9A448;
  --gold-hover-shadow: rgba(201,164,72,0.35);
  --charcoal: #1C1C1C;
  --white: #FFFFFF;
  --warm-bg: #F8F7F5;
  --muted: #6B6860;
  --border: rgba(0,0,0,0.08);
  --border-soft: rgba(0,0,0,0.06);
  --radius: 2px;
  --max-w: 1280px;
  --px: clamp(1rem, 4vw, 1.5rem);
  --transition: cubic-bezier(0.22,1,0.36,1);
}

/* ─── Typography helpers ─── */
.font-display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.gold-bar {
  width: 3rem;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.gold-bar--center { margin-left: auto; margin-right: auto; }
h2.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

/* ─── Layout ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s;
}
.navbar.scrolled .navbar__inner { height: 60px; }
.navbar__logo { flex-shrink: 0; }
.navbar__logo img {
  height: 84px;
  width: auto;
  transition: height 0.3s var(--transition);
  display: block;
}
.navbar.scrolled .navbar__logo img { height: 44px; }
.navbar__nav { display: none; align-items: center; gap: 0.25rem; }
.navbar__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #2E2E2E;
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  transition: color 0.15s;
}
.navbar__link:hover, .navbar__link.active { color: var(--gold); }
.navbar__divider {
  width: 1px; height: 20px;
  background: rgba(0,0,0,0.1);
  margin: 0 0.5rem;
}
.navbar__socials { display: flex; align-items: center; gap: 0.5rem; margin-right: 0.5rem; }
.navbar__social-icon {
  color: #6B6860;
  display: flex; align-items: center;
  transition: color 0.15s;
  text-decoration: none;
}
.navbar__social-icon:hover { color: var(--gold); }
.navbar__social-icon svg { width: 16px; height: 16px; fill: currentColor; }
.navbar__cta {
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.navbar__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px var(--gold-hover-shadow); }
.navbar__burger {
  background: none; border: none; padding: 0.25rem; color: var(--charcoal);
  display: flex; align-items: center;
}
.navbar__burger svg { width: 24px; height: 24px; }
.navbar__mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.07);
}
.navbar__mobile-menu.open { display: block; }
.navbar__mobile-link {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  color: #2E2E2E;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.15s;
}
.navbar__mobile-link:hover, .navbar__mobile-link.active { color: var(--gold); }
.navbar__mobile-socials {
  display: flex; gap: 1.25rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar__mobile-socials a { color: #6B6860; }
.navbar__mobile-socials a svg { width: 20px; height: 20px; fill: currentColor; }
@media (min-width: 768px) {
  .navbar__nav { display: flex; }
  .navbar__burger { display: none; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,28,28,0.62) 30%, rgba(28,28,28,0.08) 100%);
}
.hero__content {
  position: relative;
  width: 100%;
  padding: 5rem var(--px) 9rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.hero__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: #FFFFFF; line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 600px;
}
.hero__subheadline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--charcoal);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius); text-decoration: none;
  transition: transform 0.22s var(--transition), box-shadow 0.22s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--gold-hover-shadow); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); color: #FFFFFF;
  font-weight: 500; font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.22s var(--transition), background 0.15s, border-color 0.15s;
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost svg { width: 16px; height: 16px; }

/* ─── PROCESS STRIP ─── */
.process { position: relative; z-index: 10; margin-top: -4rem; padding-bottom: 2rem; }
.process__card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) { .process__card { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.process__step {
  padding: 2rem 1.75rem;
  border-left: 1px solid rgba(0,0,0,0.06);
}
.process__step:first-child { border-left: none; }
@media (max-width: 767px) {
  .process__step:nth-child(odd) { border-left: none; }
  .process__step:nth-child(3), .process__step:nth-child(4) {
    border-top: 1px solid rgba(0,0,0,0.06);
  }
}
.process__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 3rem;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.75rem; opacity: 0.9;
}
.process__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--charcoal); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 0.25rem;
}
.process__sub { font-size: 0.85rem; color: var(--muted); line-height: 1.4; }

/* ─── WHY ARRT ─── */
.why { padding: 5rem 0; background: var(--white); }
.why__points { display: flex; flex-direction: column; gap: 0.6rem; }
.why__point { display: flex; align-items: flex-start; gap: 0.75rem; }
.why__point svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); width: 16px; height: 16px; }
.why__point span { font-size: 0.9rem; color: #2E2E2E; line-height: 1.5; }
.btn-dark {
  display: inline-block;
  background: var(--charcoal); color: var(--white);
  font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 2rem; border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 2.5rem;
}
.btn-dark:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ─── CAROUSEL ─── */
.carousel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: #EEECE8;
}
.carousel__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}
.carousel__slide.active { opacity: 1; }
.carousel__dots {
  position: absolute; bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 2;
}
.carousel__dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  border: none; padding: 0; cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.carousel__dot.active { width: 1.5rem; background: var(--gold); }

/* ─── TRUSTED BY ─── */
.trusted { position: relative; background: linear-gradient(to bottom, #FFFFFF 50%, #F8F7F5 50%); padding: 2rem 0; }
.trusted__peak-wrap { position: relative; padding-top: 20px; }
.trusted__peak { position: absolute; top: 0; left: 0; width: 100%; display: block; }
.trusted__card {
  background: var(--white);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06), 0 2px 10px rgba(0,0,0,0.04);
  border: 2px solid #2E2E2E; border-top: none;
  overflow: hidden; padding: 1rem;
}
.trusted__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 2rem;
  padding: 1.5rem 1rem;
}
@media (min-width: 768px) {
  .trusted__inner { flex-direction: row; justify-content: space-between; gap: 1rem; }
}
.trusted__label-cell {
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .trusted__label-cell {
    text-align: left; border-bottom: none;
    border-right: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0; padding-right: 2rem;
    white-space: nowrap;
  }
}
.trusted__label-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.25rem; }
.trusted__label-heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.5rem; color: #2E2E2E; line-height: 1.2; }
.trusted__clients { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; width: 100%; align-items: center; justify-items: center; }
@media (min-width: 1024px) { .trusted__clients { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.trusted__client {
  padding: 1rem; width: 100%; max-width: 180px;
  opacity: 0.65; filter: grayscale(100%);
  transform: scale(0.98);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.trusted__client:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }
.trusted__client svg { width: 100%; }

/* ─── SERVICES GRID ─── */
.services { padding: 3rem 0 5rem; background: var(--warm-bg); }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--gold);
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  height: 100%;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.service-card:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.service-card__icon { color: var(--gold); margin-bottom: 1rem; }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  color: var(--charcoal); margin-bottom: 0.6rem; letter-spacing: 0.02em;
}
.service-card__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ─── PROJECT GALLERY (mini, on landing pages) ─── */
.project-gallery { background: var(--white); padding: 4rem 0; }
.project-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .project-grid { grid-template-columns: 1fr 1fr 1fr; } }
.project-photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 3/4; background: #EEECE8;
}
.project-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.5s var(--transition);
}
.project-photo:hover img { transform: scale(1.06); }
.project-photo__bar {
  position: absolute; top: 0.75rem; left: 0.75rem;
  width: 3px; height: 2rem;
  background: var(--gold); border-radius: 2px;
}
.project-photo__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.project-photo:hover .project-photo__overlay { opacity: 1; }
.project-photo__caption { font-size: 0.85rem; color: #FFFFFF; font-weight: 500; }

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative; height: 260px; overflow: hidden; background: #1a1a1a;
}
.cta-banner__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%; opacity: 0.55;
}
.cta-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,28,28,0.75) 0%, rgba(28,28,28,0.3) 60%, rgba(28,28,28,0.1) 100%);
}
.cta-banner__content {
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.cta-banner__eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.cta-banner__heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: #FFFFFF; line-height: 1.15; margin-bottom: 1.25rem; max-width: 520px; }
.btn-gold-sm {
  display: inline-block;
  background: var(--gold); color: var(--charcoal);
  font-weight: 700; font-size: 0.875rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius); text-decoration: none;
  width: fit-content;
  transition: transform 0.22s var(--transition), box-shadow 0.22s;
}
.btn-gold-sm:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--gold-hover-shadow); }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 5rem 0; background: var(--white); }
.testimonial-card {
  background: #FAFAF8;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  padding: 2.25rem;
  height: 100%; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--transition), box-shadow 0.35s;
  cursor: default;
}
.testimonial-card:hover { transform: scale(1.03); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testimonial-card__quote-deco {
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: Georgia, serif; font-size: 5rem;
  line-height: 1; color: var(--gold); opacity: 0.1;
  user-select: none; pointer-events: none;
}
.testimonial-card__stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-card__stars svg { width: 13px; height: 13px; fill: var(--gold); color: var(--gold); }
.testimonial-card__text {
  font-size: 0.9rem; color: #4A4844; line-height: 1.75;
  margin-bottom: 1.5rem; font-style: italic; flex: 1;
}
.testimonial-card__footer { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 1rem; }
.testimonial-card__name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.875rem; color: var(--charcoal); letter-spacing: 0.04em; text-transform: uppercase; }
.testimonial-card__location { font-size: 0.78rem; color: #9A9895; margin-top: 2px; }

/* ─── CERTIFICATIONS ─── */
.certifications { padding: 4rem 0; background: var(--warm-bg); }
.cert-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.cert-badge { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; width: 110px; }
.cert-badge__icon {
  width: 80px; height: 80px;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-out;
  display: flex; align-items: center; justify-content: center;
}
.cert-badge__icon:hover { transform: scale(1.1); }
.cert-badge__label {
  font-weight: 600; font-size: 0.72rem; color: #2E2E2E;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-align: center; line-height: 1.3;
}

/* ─── INLINE CONTACT ─── */
.inline-contact { background: var(--charcoal); padding: 4rem 0 4.5rem; }
.inline-contact__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .inline-contact__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.inline-contact__eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.inline-contact__heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: #FFFFFF; line-height: 1.1; margin-bottom: 1rem; }
.inline-contact__sub { color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 2rem; font-size: 1rem; }
.inline-contact__btns { display: flex; flex-direction: column; gap: 0.75rem; }
.btn-gold-full {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--charcoal);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 1.75rem; border-radius: var(--radius);
  text-decoration: none; width: fit-content;
  transition: transform 0.25s var(--transition);
}
.btn-gold-full:hover { transform: translateY(-2px); }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04); color: #FFFFFF;
  font-weight: 500; font-size: 0.95rem;
  padding: 0.85rem 1.75rem; border-radius: var(--radius);
  text-decoration: none; width: fit-content;
  transition: transform 0.25s var(--transition), border-color 0.25s;
}
.btn-ghost-light:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.5); }
.btn-gold-full svg, .btn-ghost-light svg { width: 16px; height: 16px; }
.inline-contact__link { margin-top: 2rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.inline-contact__link a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ─── Inline contact form (dark) ─── */
.dark-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.dark-form label { display: flex; flex-direction: column; gap: 0.4rem; }
.dark-form label.full { grid-column: 1 / -1; }
.dark-form__label-text { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.04em; }
.dark-form input,
.dark-form select,
.dark-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  box-sizing: border-box;
}
.dark-form input:focus,
.dark-form select:focus,
.dark-form textarea:focus {
  border-color: rgba(201,164,72,0.55);
  background: rgba(0,0,0,0.35);
}
.dark-form textarea { resize: vertical; min-height: 7rem; }
.dark-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.dark-form__submit {
  grid-column: 1 / -1;
  width: 100%;
  background: var(--gold); color: var(--charcoal);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.95rem; border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform 0.25s var(--transition), background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.dark-form__submit:hover { transform: translateY(-2px); }
.dark-form__submit:disabled { background: #B8943A; cursor: not-allowed; transform: none; }
.dark-form__success {
  grid-column: 1 / -1;
  padding: 2.5rem; text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,164,72,0.35);
  border-radius: var(--radius);
}
.dark-form__error { grid-column: 1 / -1; font-size: 0.8rem; color: #f87171; text-align: center; }
.dark-form__consent { flex-direction: row !important; align-items: flex-start; gap: 0.6rem !important; }
.dark-form__consent input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); cursor: pointer; }
.dark-form__consent-text { font-size: 0.78rem; line-height: 1.5; color: rgba(255,255,255,0.55); }
.dark-form__consent-text a { color: var(--gold); text-decoration: underline; }

/* ─── FOOTER ─── */
.footer { background: var(--white); border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 2rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer__logo img { height: 130px; width: auto; display: block; margin-bottom: 1rem; }
.footer__tagline { font-size: 0.875rem; color: #4A4845; line-height: 1.7; }
.footer__company-no { font-size: 0.78rem; color: #9A9895; margin-top: 0.6rem; }
.footer__social { display: flex; gap: 0.85rem; margin-top: 1.1rem; }
.footer__social-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #6B6860; transition: color 0.15s, border-color 0.15s, background 0.15s;
  text-decoration: none;
}
.footer__social-icon:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,164,72,0.06); }
.footer__social-icon svg { width: 16px; height: 16px; fill: currentColor; }
.footer__col-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--charcoal); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__link {
  display: block; font-size: 0.875rem; color: #6B6860;
  text-decoration: none; margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.footer__link:hover { color: var(--gold); }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: #4A4845;
  text-decoration: none; margin-bottom: 0.75rem;
}
.footer__contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; }
.footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer__copy { font-size: 0.78rem; color: #9A9895; }
.footer__bottom-links { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.footer__privacy { font-size: 0.78rem; color: #9A9895; text-decoration: none; transition: color 0.15s; }
.footer__privacy:hover { color: var(--gold); }
.footer__privacy--btn { background: none; border: none; padding: 0; font-family: 'Inter', sans-serif; cursor: pointer; }

/* ─── Cookie consent banner ─── */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--charcoal, #1C1C1C);
  border-top: 1px solid rgba(201,164,72,0.35);
  padding: 1.1rem 1.25rem;
  transform: translateY(110%);
  transition: transform 0.35s var(--transition, ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner__text { color: rgba(255,255,255,0.75); font-size: 0.85rem; line-height: 1.55; max-width: 720px; margin: 0; }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-banner__btn {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem;
  padding: 0.6rem 1.25rem; border-radius: var(--radius); cursor: pointer;
  border: 1px solid transparent; transition: transform 0.2s, background 0.2s;
}
.cookie-banner__btn--ghost { background: transparent; border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
.cookie-banner__btn--ghost:hover { border-color: rgba(255,255,255,0.5); }
.cookie-banner__btn--gold { background: var(--gold); color: var(--charcoal); }
.cookie-banner__btn--gold:hover { transform: translateY(-1px); }
@media (max-width: 640px) { .cookie-banner__inner { flex-direction: column; align-items: stretch; } .cookie-banner__btns { justify-content: stretch; } .cookie-banner__btn { flex: 1; } }

/* ─── CONTACT PAGE ─── */
.contact-page { background: var(--warm-bg); min-height: 80vh; }
.contact-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 4rem var(--px) 3rem; text-align: center; }
.contact-header__eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.75rem; }
.contact-header__heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--charcoal); line-height: 1.1; margin-bottom: 1rem; }
.contact-header__sub { color: #6B6860; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 3.5rem 0; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 3fr 2fr; } }

/* Contact form (light) */
.light-form {
  background: var(--white);
  border-radius: var(--radius); padding: 2.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.light-form__heading {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.4rem;
  color: var(--charcoal); margin-bottom: 1.75rem;
  border-bottom: 1px solid #EEECE8; padding-bottom: 1rem; letter-spacing: 0.02em;
}
.light-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 560px) { .light-form__grid { grid-template-columns: 1fr; } }
.light-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.light-form__field.full { grid-column: 1 / -1; }
.light-form label { font-weight: 500; font-size: 0.875rem; color: var(--charcoal); }
.light-form input,
.light-form select,
.light-form textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid #D8D6D2; border-radius: var(--radius);
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  color: var(--charcoal); background: var(--white); outline: none;
  box-sizing: border-box; transition: border-color 0.15s;
}
.light-form input:focus,
.light-form select:focus,
.light-form textarea:focus { border-color: var(--gold); }
.light-form input.error,
.light-form select.error { border-color: #d4183d; }
.light-form textarea { resize: vertical; min-height: 130px; }
.light-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6860' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.field-error { font-size: 0.78rem; color: #d4183d; margin-top: 0.25rem; }
.light-form__submit {
  width: 100%; background: var(--gold); color: var(--charcoal);
  font-weight: 700; font-size: 1rem;
  padding: 0.95rem 2rem; border-radius: var(--radius); border: none;
  cursor: pointer; font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em; margin-top: 1.75rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.15s;
}
.light-form__submit:hover { background: #b89440; }
.light-form__submit:disabled { background: #B8943A; cursor: not-allowed; }
.light-form__privacy { margin-top: 1rem; font-size: 0.78rem; color: #6B6860; line-height: 1.65; text-align: center; }
.light-form__consent { display: flex !important; flex-direction: row; align-items: flex-start; gap: 0.6rem; margin-top: 1.25rem; font-weight: 400 !important; cursor: pointer; }
.light-form__consent input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); cursor: pointer; }
.light-form__consent span { font-size: 0.82rem; line-height: 1.55; color: #4A4845; }
.light-form__consent a { color: var(--gold); text-decoration: underline; }
.light-form__success {
  text-align: center; padding: 3rem 2rem;
  background: var(--white); border: 2px solid var(--gold);
  border-radius: var(--radius);
}
.light-form__success svg { width: 52px; height: 52px; color: var(--gold); margin: 0 auto 1.25rem; }
.light-form__success h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--charcoal); margin-bottom: 0.75rem; }
.light-form__success p { color: #6B6860; line-height: 1.7; margin-bottom: 1.5rem; }
.light-form__send-error { margin-top: 0.75rem; font-size: 0.82rem; color: #d4183d; text-align: center; line-height: 1.5; }

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.sidebar-card--dark { background: var(--charcoal); }
.sidebar-card__heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.25rem; color: var(--charcoal); }
.sidebar-card--dark .sidebar-card__heading { color: #FFFFFF; }
.contact-detail { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; margin-bottom: 1rem; }
.contact-detail__icon {
  width: 36px; height: 36px;
  background: var(--gold); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail__icon svg { color: var(--charcoal); width: 16px; height: 16px; }
.contact-detail__label { font-size: 0.75rem; color: #6B6860; margin-bottom: 1px; }
.contact-detail__value { font-weight: 600; color: var(--charcoal); font-size: 0.95rem; }
.trust-list { display: flex; flex-direction: column; gap: 0.75rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; }
.trust-item svg { color: var(--gold); flex-shrink: 0; width: 14px; height: 14px; }
.trust-item span { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.hours-table { display: flex; flex-direction: column; gap: 0; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding-bottom: 0.5rem; margin-bottom: 0.5rem; border-bottom: 1px solid #EEECE8; }
.hours-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.hours-row__day { color: #6B6860; }
.hours-row__time { font-weight: 600; color: var(--charcoal); }

/* ─── GALLERY PAGE ─── */
.gallery-page { background: var(--warm-bg); min-height: 80vh; }
.gallery-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 3.5rem var(--px) 2.5rem; }
.gallery-header__eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.gallery-header__heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--charcoal); line-height: 1.05; margin-bottom: 0.75rem; }
.gallery-header__sub { color: #6B6860; font-size: 0.95rem; line-height: 1.65; max-width: 520px; }

/* Gallery filter tabs */
.gallery-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.gallery-tab {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.6rem 1.4rem; border-radius: var(--radius);
  cursor: pointer; transition: all 0.15s;
  border: 1px solid rgba(0,0,0,0.12); background: var(--white); color: #6B6860;
}
.gallery-tab.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.gallery-tags-panel {
  padding: 1rem 1.25rem;
  background: var(--white); border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); margin-bottom: 2rem;
}
.gallery-tags-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: #9A9895; margin-bottom: 0.75rem; display: block; }
.gallery-tags-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.gallery-tag-btn {
  font-family: 'Inter', sans-serif; font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: transparent; color: #4A4845;
  cursor: pointer; transition: all 0.15s;
  display: flex; align-items: center; gap: 0.35rem;
}
.gallery-tag-btn.active { background: var(--gold); border-color: var(--gold); color: var(--charcoal); font-weight: 600; }
.gallery-tag-btn .count { font-size: 0.7rem; color: #9A9895; }
.gallery-tag-btn.active .count { color: rgba(28,28,28,0.55); }
.gallery-results-info { font-size: 0.82rem; color: #9A9895; margin-bottom: 1.25rem; }
.gallery-clear { margin-left: 0.75rem; color: var(--gold); background: none; border: none; cursor: pointer; font-size: 0.82rem; font-weight: 600; padding: 0; }

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1280px) { .gallery-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius); background: #EEECE8; aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.5s var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-badge {
  position: absolute; top: 0.6rem; left: 0.6rem;
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.2rem 0.5rem; border-radius: var(--radius);
}
.gallery-badge--roofing { background: var(--charcoal); }
.gallery-badge--glazing { background: #1a3a6b; }
.gallery-badge--landscaping { background: #1e4d2b; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.9) 0%, rgba(28,28,28,0.2) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay__caption { font-size: 0.82rem; color: #FFFFFF; font-weight: 500; margin-bottom: 0.5rem; }
.gallery-overlay__tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.gallery-tag-pill {
  font-size: 0.68rem; padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12); color: #FFFFFF;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.gallery-tag-pill.active { border-color: var(--gold); background: var(--gold); color: var(--charcoal); }
.gallery-empty { text-align: center; padding: 4rem; color: #9A9895; }
.gallery-empty__heading { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; }
.gallery-empty__sub { font-size: 0.875rem; margin-top: 0.5rem; }
.gallery-cta { text-align: center; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(0,0,0,0.07); }
.gallery-cta p { color: #6B6860; margin-bottom: 1.25rem; font-size: 0.95rem; }

/* ─── PRIVACY / LEGAL PAGE ─── */
.legal-page { background: var(--white); }
.legal-page__inner { max-width: 720px; margin: 0 auto; padding: 4rem var(--px); }
.legal-page h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: var(--charcoal); margin-bottom: 0.5rem; }
.legal-page .updated { font-size: 0.875rem; color: #9A9895; margin-bottom: 2.5rem; }
.legal-page h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--charcoal); margin: 2rem 0 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; }
.legal-page p, .legal-page li { font-size: 0.9rem; color: #4A4845; line-height: 1.8; margin-bottom: 0.75rem; }
.legal-page ul { margin-left: 1.25rem; }
.legal-page ul li { list-style: disc; }
.legal-page a { color: var(--gold); text-decoration: underline; }

/* ─── Spinner ─── */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spinning { animation: spin 1s linear infinite; }

/* ─── CountUp stat ─── */
.countup { text-align: center; padding: 0.25rem 0; }
.countup__number { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.countup__label { font-size: 0.72rem; color: #6B6860; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; }

/* ─── Text utilities ─── */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }

/* ─── PROJECT CARDS (landscaping / case studies) ─── */
.project-cards { padding: 4rem 0 5rem; background: var(--white); }
.project-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .project-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .project-cards-grid { grid-template-columns: 1fr 1fr 1fr; } }
.project-card-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s var(--transition), box-shadow 0.25s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.project-card-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.11); }
.project-card-item__img {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: #EEECE8;
}
.project-card-item__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s var(--transition);
}
.project-card-item:hover .project-card-item__img img { transform: scale(1.06); }
.project-card-item__badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--charcoal); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: var(--radius);
}
.project-card-item__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.project-card-item__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.9rem; }
.project-card-item__tag {
  font-size: 0.72rem; padding: 0.18rem 0.55rem;
  border-radius: 999px; border: 1px solid rgba(0,0,0,0.12);
  color: #6B6860; background: transparent;
  font-family: 'Inter', sans-serif;
}
.project-card-item__title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1.2rem; color: var(--charcoal); line-height: 1.2;
  margin-bottom: 0.6rem;
}
.project-card-item__desc { font-size: 0.875rem; color: #6B6860; line-height: 1.7; flex: 1; }
.project-card-item__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem; font-weight: 600; font-size: 0.875rem; color: var(--gold);
}
.project-card-item__cta svg { width: 14px; height: 14px; transition: transform 0.2s; }
.project-card-item:hover .project-card-item__cta svg { transform: translateX(3px); }

/* ─── CASE STUDY PAGE ─── */
.case-study { background: var(--warm-bg); min-height: 80vh; }
.case-study__hero {
  position: relative; height: 420px; overflow: hidden; background: #1a1a1a;
}
.case-study__hero img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block; opacity: 0.82;
}
.case-study__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.9) 0%, rgba(28,28,28,0.2) 55%, transparent 100%);
}
.case-study__hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem var(--px);
  max-width: var(--max-w); margin: 0 auto;
}
.case-study__back {
  position: absolute; top: 1.5rem; left: var(--px);
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.case-study__back:hover { color: var(--gold); }
.case-study__back svg { width: 14px; height: 14px; }
.case-study__eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.case-study__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); color: #FFFFFF; line-height: 1.1; }
.case-study__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.case-study__tag { font-size: 0.72rem; padding: 0.25rem 0.65rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); font-family: 'Inter', sans-serif; }

.case-study__body { max-width: 860px; margin: 0 auto; padding: 3.5rem var(--px); }
.case-study__at-glance {
  background: var(--charcoal); border-radius: var(--radius);
  padding: 1.75rem 2rem; margin-bottom: 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
@media (min-width: 640px) { .case-study__at-glance { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.glance-item__label { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.3rem; }
.glance-item__value { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--white); line-height: 1.3; }
.glance-item__value--gold { color: var(--gold); }

.case-study h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1.5rem; color: var(--charcoal); letter-spacing: 0.04em;
  text-transform: uppercase; margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem; border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.case-study p { font-size: 0.925rem; color: #4A4845; line-height: 1.85; margin-bottom: 1rem; }
.case-study ul { margin: 0.5rem 0 1rem 0; }
.case-study ul li {
  font-size: 0.925rem; color: #4A4845; line-height: 1.8;
  padding: 0.25rem 0 0.25rem 1.5rem; position: relative;
}
.case-study ul li::before {
  content: '';
  position: absolute; left: 0; top: 0.75rem;
  width: 0.4rem; height: 0.4rem;
  background: var(--gold); border-radius: 50%;
}

/* Case study photo grid */
.case-study__photos { margin: 2rem 0; }
.case-study__photo-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.case-study__photo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .case-study__photo-grid { grid-template-columns: 1fr 1fr 1fr; } }
.case-study__photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: #EEECE8;
}
.case-study__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-study__photo-grid--single { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
.case-study__photo-grid--single .case-study__photo { aspect-ratio: 16/10; }
.case-study__photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.75rem;
  background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, transparent 100%);
  font-size: 0.72rem; color: rgba(255,255,255,0.9); font-weight: 500;
}
.case-study__cta-box {
  background: var(--white); border: 2px solid var(--gold);
  border-radius: var(--radius); padding: 2.5rem;
  text-align: center; margin-top: 3rem;
}
.case-study__cta-box h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.2; }
.case-study__cta-box p { color: #6B6860; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.9rem; }
.case-study__cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ─── NAVBAR DROPDOWN + PHONE ─── */
.navbar__phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; color: var(--charcoal);
  text-decoration: none; padding: 0.3rem 0.75rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.navbar__phone:hover { color: var(--gold); border-color: var(--gold); }
.navbar__phone svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* Services dropdown */
.navbar__dropdown { position: relative; }
.navbar__dropdown-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.03em; color: #2E2E2E;
  background: none; border: none; padding: 0.4rem 0.9rem;
  border-radius: var(--radius); cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.15s;
}
.navbar__dropdown-btn:hover,
.navbar__dropdown-btn.active { color: var(--gold); }
.navbar__dropdown-btn svg { width: 12px; height: 12px; transition: transform 0.2s; }
.navbar__dropdown-btn.open svg { transform: rotate(180deg); }

.navbar__dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 0.4rem 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.navbar__dropdown-menu.open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.navbar__dropdown-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1rem;
  font-size: 0.875rem; font-weight: 500; color: #2E2E2E;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.navbar__dropdown-item:hover { background: #F8F7F5; color: var(--gold); }
.navbar__dropdown-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.navbar__dropdown-divider {
  height: 1px; background: rgba(0,0,0,0.06);
  margin: 0.3rem 0;
}

/* Mobile services expand */
.navbar__mobile-services-btn {
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 1rem; color: #2E2E2E;
  text-decoration: none; padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: none; border-right: none; border-left: none; border-top: none;
  width: 100%; font-family: 'Inter', sans-serif; cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar__mobile-services-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.navbar__mobile-services-btn.open svg { transform: rotate(180deg); }
.navbar__mobile-submenu {
  display: none; background: #FAFAF9;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar__mobile-submenu.open { display: block; }
.navbar__mobile-submenu-link {
  display: block; padding: 0.75rem 2.25rem;
  font-size: 0.9rem; font-weight: 500; color: #6B6860;
  text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: color 0.15s;
}
.navbar__mobile-submenu-link:hover, .navbar__mobile-submenu-link.active { color: var(--gold); }
.navbar__mobile-phone {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.5rem;
  font-size: 0.95rem; font-weight: 600; color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar__mobile-phone svg { color: var(--gold); width: 16px; height: 16px; }

/* ─── PROJECT GALLERY PAGE (new) ─── */
.proj-gallery { background: var(--warm-bg); }
.proj-gallery__header {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 3.5rem var(--px) 2.5rem;
}
.proj-gallery__eyebrow { font-family: 'Barlow Condensed',sans-serif; font-weight:700; font-size:0.75rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:0.5rem; }
.proj-gallery__heading { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:clamp(2.2rem,5vw,3.2rem); color:var(--charcoal); line-height:1.05; margin-bottom:0.75rem; }
.proj-gallery__sub { color:#6B6860; font-size:0.95rem; line-height:1.65; max-width:560px; }

/* Filter bar */
.proj-filter { padding: 1.5rem 0 0; background: var(--white); border-bottom: 1px solid var(--border); }
.proj-filter__inner { display:flex; align-items:flex-start; gap:0.75rem; flex-wrap:wrap; padding-bottom:1rem; }
.proj-filter__section-tabs { display:flex; gap:0.4rem; flex-wrap:wrap; }
.proj-tab {
  font-family:'Barlow Condensed',sans-serif; font-weight:700;
  font-size:0.85rem; letter-spacing:0.06em; text-transform:uppercase;
  padding:0.55rem 1.2rem; border-radius:var(--radius); cursor:pointer;
  border:1.5px solid rgba(0,0,0,0.12); background:var(--white); color:#6B6860;
  transition:all 0.15s;
}
.proj-tab.active { background:var(--charcoal); color:var(--white); border-color:var(--charcoal); }
.proj-filter__sep { width:1px; height:32px; background:rgba(0,0,0,0.08); align-self:center; margin:0 0.25rem; }
.proj-tag-strip { display:flex; gap:0.4rem; flex-wrap:wrap; align-items:center; }
.proj-tag-btn {
  font-size:0.78rem; padding:0.3rem 0.85rem;
  border-radius:999px; border:1.5px solid rgba(0,0,0,0.1);
  background:transparent; color:#4A4845; cursor:pointer;
  transition:all 0.15s; font-family:'Inter',sans-serif;
}
.proj-tag-btn.active { background:var(--gold); border-color:var(--gold); color:var(--charcoal); font-weight:600; }
.proj-extra-tags { display:contents; }
.proj-tag-btn--more {
  border-style:dashed; color:#9A9895;
}
.proj-tag-btn--more.expanded { color:#4A4845; border-style:solid; }
.proj-filter__extra-tags { display:none; gap:0.4rem; flex-wrap:wrap; width:100%; margin-top:0.3rem; }
.proj-filter__extra-tags.open { display:flex; }
.proj-results { display:flex; align-items:center; justify-content:space-between; padding:0.75rem 0 0; }
.proj-results__count { font-size:0.82rem; color:#9A9895; }
.proj-results__clear { font-size:0.82rem; color:var(--gold); background:none; border:none; cursor:pointer; font-weight:600; padding:0; display:none; }
.proj-results__clear.visible { display:inline; }

/* Section headings in gallery */
.proj-section { padding:3rem 0 1.5rem; }
.proj-section__heading {
  font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:1.6rem;
  color:var(--charcoal); margin-bottom:1.5rem;
  display:flex; align-items:center; gap:0.75rem;
}
.proj-section__heading-bar { width:3px; height:1.4em; background:var(--gold); border-radius:2px; flex-shrink:0; }
.proj-section__count { font-size:0.8rem; color:#9A9895; font-weight:400; font-family:'Inter',sans-serif; letter-spacing:0; text-transform:none; }

/* Project card (gallery page) */
.proj-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (min-width:768px) { .proj-grid { grid-template-columns:1fr 1fr 1fr; } }
@media (min-width:1280px) { .proj-grid { grid-template-columns:1fr 1fr 1fr 1fr; } }
.proj-card {
  position:relative; overflow:hidden; border-radius:var(--radius);
  background:#EEECE8; aspect-ratio:3/4; cursor:pointer;
  text-decoration:none; display:block;
}
.proj-card__img-wrap {
  position:absolute; inset:0; width:100%; height:100%; overflow:hidden;
}
.proj-card img {
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover; object-position:center top;
  display:block; transition:transform 0.5s var(--transition);
}
.proj-card:hover img { transform:scale(1.06); }
.proj-card__service-badge {
  position:absolute; top:0.6rem; left:0.6rem;
  font-family:'Barlow Condensed',sans-serif; font-weight:700;
  font-size:0.65rem; letter-spacing:0.12em; text-transform:uppercase;
  padding:0.2rem 0.5rem; border-radius:var(--radius); color:#fff;
}
.proj-card__service-badge--roofing { background:var(--charcoal); }
.proj-card__service-badge--glazing { background:#1a3a6b; }
.proj-card__service-badge--landscaping { background:#1e4d2b; }
.proj-card__overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(28,28,28,0.92) 0%, rgba(28,28,28,0.2) 55%, transparent 100%);
  opacity:0; transition:opacity 0.3s ease;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:1rem;
}
.proj-card:hover .proj-card__overlay { opacity:1; }
.proj-card__caption { font-size:0.85rem; color:#fff; font-weight:500; margin-bottom:0.5rem; line-height:1.35; }
.proj-card__tags { display:flex; flex-wrap:wrap; gap:0.3rem; }
.proj-card__tag {
  font-size:0.68rem; padding:0.2rem 0.5rem;
  border-radius:999px; border:1px solid rgba(255,255,255,0.4);
  background:rgba(255,255,255,0.12); color:#fff;
  font-family:'Inter',sans-serif;
}
.proj-card__case-link {
  display:inline-flex; align-items:center; gap:0.3rem;
  font-size:0.72rem; color:var(--gold); font-weight:600; margin-top:0.5rem;
  text-decoration:none;
}
.proj-card__case-link svg { width:10px; height:10px; }
.proj-section--hidden { display:none; }
.proj-empty { text-align:center; padding:3rem; color:#9A9895; grid-column:1/-1; }
.proj-empty__heading { font-family:'Barlow Condensed',sans-serif; font-size:1.4rem; font-weight:700; }
