/* =============================================
   G&G CONSTRUCTION · STYLESHEET
   Theme: Light Eggshell + Olive Green
   Version: 1.0
   ============================================= */

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

:root {
  --eggshell: #F5F2EC;
  --off-white: #FDFCF8;
  --paper: #EDE9DF;
  --paper-mid: #E2DDD2;
  --olive: #6B7A45;
  --olive-dark: #4E5A30;
  --olive-light: #8A9960;
  --olive-pale: #EEF1E6;
  --olive-mid: #D4DCBA;
  --charcoal: #2A2A24;
  --text-dark: #1E1E18;
  --text-mid: #4A4A3E;
  --text-light: #7A7A6A;
  --text-muted: #A0A090;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(42,42,36,0.08);
  --shadow-md: 0 4px 20px rgba(42,42,36,0.10);
  --shadow-lg: 0 8px 40px rgba(42,42,36,0.14);
  --radius: 6px;
  --radius-lg: 10px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.8rem, 5.2vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(2.1rem, 3.2vw, 3rem); font-weight: 700; }
h3 { font-size: 1.55rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 400;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--olive);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid var(--olive);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.9);
  color: var(--white);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--olive);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--olive);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover {
  background: var(--olive-pale);
}

.btn-full { width: 100%; text-align: center; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 5.5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0.75rem auto 0; max-width: 520px; }
.section-header p { margin-top: 0.75rem; }

.eyebrow {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.5rem;
}

/* ---- NAVIGATION ---- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--off-white);
  border-bottom: 1px solid var(--paper-mid);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  margin-left: auto;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a:hover {
  color: var(--olive);
  border-bottom-color: var(--olive);
}
.nav-links .caret {
  font-size: 11px;
  line-height: 1;
  transition: transform 0.2s;
}
.nav-links .has-submenu.open > a .caret,
.nav-links .has-submenu:hover > a .caret {
  transform: rotate(180deg);
}

/* ---- DROPDOWN SUBMENU ---- */
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--off-white);
  border: 1px solid var(--paper-mid);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 250;
}
/* Invisible hover bridge so users don't lose hover crossing the gap */
.submenu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.has-submenu:hover > .submenu,
.has-submenu.open > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
.submenu li {
  list-style: none;
}
.submenu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  border-bottom: none !important;
  transition: background 0.15s, color 0.15s;
}
.submenu a:hover {
  background: var(--paper-light, #f4f1ea);
  color: var(--olive-dark);
  border-bottom: none !important;
}

.nav-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--olive);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 2px solid var(--olive);
}
.nav-phone:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav-phone-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 2px;
}
.nav-phone-number {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.phone-icon { font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--off-white);
  border-top: 1px solid var(--paper-mid);
  padding: 1rem 2rem;
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--paper);
}
.mob-cta {
  margin-top: 1rem;
  background: var(--olive);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.0);
  transform-origin: center center;
  transition: opacity 1.6s ease-in-out;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
}
/* Animations run on the active slide. Linear timing so motion is visible the whole time. */
.hero-slide:nth-child(1).active { animation: heroPanZoomA 9s linear forwards; }
.hero-slide:nth-child(2).active { animation: heroPanZoomB 9s linear forwards; }
.hero-slide:nth-child(3).active { animation: heroPanZoomC 9s linear forwards; }

@keyframes heroPanZoomA {
  from { transform: scale(1.00) translate(0, 0); }
  to   { transform: scale(1.28) translate(-2%, -1%); }
}
@keyframes heroPanZoomB {
  from { transform: scale(1.28) translate(2%, 1%); }
  to   { transform: scale(1.00) translate(0, 0); }
}
@keyframes heroPanZoomC {
  from { transform: scale(1.00) translate(0, 1%); }
  to   { transform: scale(1.26) translate(1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 0.4s linear; }
  .hero-slide.active,
  .hero-slide:nth-child(1).active,
  .hero-slide:nth-child(2).active,
  .hero-slide:nth-child(3).active {
    animation: none;
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(15,15,12,0.82) 0%,
      rgba(15,15,12,0.62) 50%,
      rgba(15,15,12,0.28) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(15,15,12,0.18) 0%,
      rgba(15,15,12,0.00) 35%,
      rgba(15,15,12,0.00) 65%,
      rgba(15,15,12,0.18) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 3.5rem;
  max-width: 700px;
  margin: 0 auto 0 calc((100vw - 1100px)/2);
}
.hero-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: var(--olive-light);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero h1 em {
  font-style: italic;
  color: var(--olive-light);
}
.hero > .hero-content > p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--olive);
  padding: 1rem 2rem;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  padding: 6px 1.5rem;
  letter-spacing: 0.2px;
}
.trust-item svg { opacity: 0.8; flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.25);
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--paper-mid);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--olive-pale);
  border-bottom: 1px solid var(--olive-mid);
  color: var(--olive-dark);
}
.service-icon svg {
  width: 56px;
  height: 56px;
  stroke: currentColor;
}
.service-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.6rem;
  background: transparent;
}
.service-tag.popular {
  background: var(--olive-pale);
  color: var(--olive-dark);
  border: 1px solid var(--olive-mid);
}
.service-tag.new {
  background: #FEF3E2;
  color: #92550A;
  border: 1px solid #F8D9A0;
}
.service-tag.expanding {
  background: #EAF3E6;
  color: #3A6B28;
  border: 1px solid #B9D9AE;
}
.service-tag:empty { display: none; }

.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.service-body p {
  font-size: 14.5px;
  margin-bottom: 1rem;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.service-link:hover { color: var(--olive-dark); }

/* ---- ABOUT ---- */
.about-section { background: var(--eggshell); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}
.about-img-main {
  height: 560px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 260px;
  height: 210px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  border: 6px solid var(--off-white);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--olive);
  color: white;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 5px solid var(--eggshell);
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.badge-txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
  opacity: 0.9;
}

.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }
.about-text .btn-primary { margin-top: 0.5rem; }

.about-pillars {
  margin: 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--olive-pale);
  color: var(--olive-dark);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid var(--olive-mid);
}
.pillar strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.pillar span {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.55;
}

/* ---- PORTFOLIO ---- */
.portfolio-section { background: var(--off-white); }

.portfolio-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--paper-mid);
  background: transparent;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--olive);
  color: var(--olive);
}
.filter-btn.active {
  background: var(--olive);
  border-color: var(--olive);
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: transform 0.25s, box-shadow 0.25s;
}
.portfolio-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.portfolio-item.hidden { display: none; }

.port-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.portfolio-item:hover .port-img { transform: scale(1.04); }
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,16,0.78) 0%, rgba(20,20,16,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  transition: background 0.3s;
}
.portfolio-item:hover .port-overlay {
  background: linear-gradient(to top, rgba(20,20,16,0.88) 0%, rgba(20,20,16,0.25) 65%, transparent 100%);
}
.port-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 4px;
}
.port-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}
.port-overlay p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.portfolio-note {
  text-align: center;
  margin-top: 2rem;
}
.portfolio-note p {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--eggshell); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--paper-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card.featured {
  border-color: var(--olive-mid);
  border-width: 2px;
}
.stars {
  color: #C8963A;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--olive-pale);
  color: var(--olive-dark);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--olive-mid);
  flex-shrink: 0;
}
.reviewer-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.reviewer-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- CTA STRIP ---- */
.cta-strip {
  background: var(--olive-dark);
  padding: 2.5rem 2rem;
}
.cta-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.cta-strip-text p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}
.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-strip .btn-primary {
  background: var(--white);
  color: var(--olive-dark);
  border-color: var(--white);
  font-size: 15px;
  padding: 13px 24px;
}
.cta-strip .btn-primary:hover {
  background: var(--eggshell);
  border-color: var(--eggshell);
}

/* ---- CONTACT ---- */
.contact-section { background: var(--off-white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 0.6rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--eggshell);
  border: 1px solid var(--paper-mid);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
a.contact-card:hover {
  border-color: var(--olive);
  box-shadow: var(--shadow-sm);
}
.cc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--olive-pale);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--olive-mid);
}
.cc-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.cc-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
}

/* FORM */
.contact-form {
  background: var(--white);
  border: 1px solid var(--paper-mid);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--eggshell);
  border: 1.5px solid var(--paper-mid);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107,122,69,0.12);
}
.form-group textarea { resize: vertical; }
.contact-form .btn-primary {
  margin-top: 1.25rem;
  font-size: 15px;
  padding: 14px;
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.form-success {
  margin-top: 1rem;
  padding: 12px 16px;
  background: var(--olive-pale);
  border: 1px solid var(--olive-mid);
  border-radius: var(--radius);
  color: var(--olive-dark);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  border-top: 3px solid var(--olive);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer-brand .footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--olive-light);
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--white); }
.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--olive-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-lic { color: var(--olive-light) !important; }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { right: 1rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-content { margin-left: 0; }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-sep { display: none; }
  .trust-item { width: 50%; justify-content: center; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* =============================================
   SERVICE PAGES (v1.2)
   ============================================= */

/* Compact page header (replaces full hero on subpages) */
.page-header {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background: var(--eggshell);
  border-bottom: 1px solid var(--paper-mid);
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.page-header .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 0.75rem;
}
.page-header h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 19px;
  color: var(--text-mid);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.breadcrumb {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--olive-dark);
  font-weight: 600;
}
.breadcrumb a:hover { color: var(--olive); }
.breadcrumb-sep { margin: 0 8px; opacity: 0.5; }

/* Service intro section */
.service-intro {
  padding: 4rem 0 2rem;
}
.service-intro .container {
  max-width: 860px;
}
.service-intro h2 {
  margin-bottom: 1.25rem;
}
.service-intro p {
  font-size: 19px;
  margin-bottom: 1.25rem;
}

/* Scope of work — icon cards grid */
.scope-section {
  padding: 3rem 0 4rem;
  background: var(--eggshell);
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.scope-card {
  background: var(--off-white);
  border: 1px solid var(--paper-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.scope-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive-mid);
}
.scope-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--olive-pale);
  color: var(--olive-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--olive-mid);
}
.scope-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.scope-card p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Process steps */
.process-section {
  padding: 4rem 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  background: var(--off-white);
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--radius) var(--radius) 0;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.process-step p {
  font-size: 14.5px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.55;
}

/* Why us strip */
.why-us-section {
  padding: 4rem 0;
  background: var(--olive-pale);
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-us-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-us-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--olive);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.why-us-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  line-height: 1.25;
}
.why-us-item p {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.55;
}

/* Photo gallery */
.gallery-section {
  padding: 4rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-item {
  height: 280px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
  box-shadow: var(--shadow-sm);
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* Related services */
.related-section {
  padding: 4rem 0;
  background: var(--eggshell);
  border-top: 1px solid var(--paper-mid);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.related-card {
  display: block;
  background: var(--off-white);
  border: 1px solid var(--paper-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive);
}
.related-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.related-card p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0 0 0.75rem;
}
.related-card .related-arrow {
  font-weight: 600;
  font-size: 14px;
  color: var(--olive-dark);
  letter-spacing: 0.3px;
}

/* Page CTA strip uses existing .cta-strip */

@media (max-width: 980px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .page-header { padding: 3rem 0 2.5rem; }
  .scope-grid, .process-steps, .why-us-grid, .gallery-grid, .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- PHONE CTA BUTTON (Contact Us / Phone Number) ---- */
.btn-primary.btn-phone,
.btn-outline.btn-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  padding-top: 9px;
  padding-bottom: 9px;
  text-align: center;
}
.btn-phone .btn-phone-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 2px;
}
.btn-phone .btn-phone-number {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
