/* ============================================================
   Island Green Services — Stylesheet v2
   Light base · Charcoal feature panels · Orange accent
   ============================================================ */

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

:root {
  /* Core palette */
  --orange:        #e07020;
  --orange-dark:   #c05e18;
  --orange-light:  #fdf3eb;
  --charcoal:      #1e1e1e;
  --charcoal-mid:  #2e2e2e;
  --white:         #ffffff;
  --off-white:     #f7f5f2;
  --border:        #e8e4de;
  --text-dark:     #1e1e1e;
  --text-mid:      #555555;
  --text-light:    #888888;

  /* Type */
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Misc */
  --max-w:    1200px;
  --radius:   6px;
  --radius-lg: 10px;
  --shadow:   0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }

p { color: var(--text-mid); max-width: 66ch; }

.label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
section { padding-block: clamp(4rem, 7vw, 6rem); }

.section-header { max-width: 580px; margin-bottom: 3rem; }
.section-header .label { margin-bottom: 0.5rem; }
.section-header h2 { margin-bottom: 0.85rem; }
.section-header p { font-size: 1.05rem; }
.section-header.centered { margin-inline: auto; text-align: center; }
.section-header.centered p { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(224,112,32,0.35);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-lg { padding: 0.95rem 2rem; font-size: 0.92rem; }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--charcoal);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-dark); background: var(--off-white); }
.nav-links a.active { color: var(--text-dark); }

.nav-phone {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition);
  flex-shrink: 0;
}
.nav-phone:hover { color: var(--orange); }
.nav-phone svg { width: 14px; height: 14px; stroke: var(--orange); }

.nav-cta { flex-shrink: 0; }

.nav-social { display: flex; align-items: center; gap: 0.35rem; flex-shrink: 0; }
.nav-social a { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 6px; color: var(--text-mid); transition: color var(--transition), background var(--transition); }
.nav-social a:hover { color: var(--orange); background: var(--off-white); }
.nav-social svg { width: 16px; height: 16px; }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); transition: background var(--transition), color var(--transition); }
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .btn { margin-top: 1.5rem; justify-content: center; }
.mobile-nav-close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6);
}
.mobile-nav-close svg { width: 26px; height: 26px; stroke: currentColor; }

/* ---------- HERO (dark feature) ---------- */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: #1a1f1a;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.28) 65%, transparent 100%); }

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding-block: 3rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2.2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: #f0a040; }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.25rem;
  max-width: 54ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 3rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.hero-trust-item svg { width: 14px; height: 14px; stroke: var(--orange); flex-shrink: 0; }

/* ---------- Trust bar (light) ---------- */
.trust-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding-block: 1rem; }
.trust-bar-inner {
  display: flex; flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-mid);
}
.trust-item svg { width: 15px; height: 15px; stroke: var(--orange); flex-shrink: 0; }
.trust-divider { width: 1px; height: 18px; background: var(--border); }

/* ---------- Services grid (white) ---------- */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }

.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  background: var(--white);
  border-color: #d0cbc4;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 46px; height: 46px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--orange); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.service-card p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 1.1rem; max-width: none; }
.service-link {
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.5rem; }
.service-link svg { width: 12px; height: 12px; stroke: currentColor; }

/* ---------- About (dark feature) ---------- */
.about-section { background: var(--charcoal); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal-mid);
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(224,112,32,0.4);
}
.about-badge .num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.about-badge .lbl { font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; opacity: 0.85; margin-top: 0.2rem; }

.about-content .label { margin-bottom: 0.6rem; }
.about-content h2 { color: var(--white); margin-bottom: 1rem; }
.about-content > p { color: rgba(255,255,255,0.62); font-size: 1.02rem; margin-bottom: 1.5rem; }

.about-points { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.about-point { display: flex; align-items: flex-start; gap: 0.65rem; }
.about-point-check {
  width: 20px; height: 20px;
  background: rgba(224,112,32,0.15);
  border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; margin-top: 2px;
}
.about-point-check svg { width: 10px; height: 10px; stroke: var(--orange); stroke-width: 3; }
.about-point p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0; max-width: none; }
.about-point p strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* ---------- Stats (charcoal) ---------- */
.stats-section { background: var(--charcoal-mid); padding-block: 3.5rem; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-family: var(--font-head); font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.09em; }

/* ---------- Testimonials (off-white) ---------- */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { width: 14px; height: 14px; fill: var(--orange); }
.testimonial-card blockquote { font-size: 0.92rem; line-height: 1.7; color: var(--text-mid); font-style: italic; margin-bottom: 1.25rem; }
.author-row { display: flex; align-items: center; gap: 0.65rem; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--charcoal); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  display: grid; place-items: center; flex-shrink: 0;
}
.author-name { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--text-dark); }
.author-loc { font-size: 0.75rem; color: var(--text-light); font-family: var(--font-head); }

/* ---------- Service areas (white) ---------- */
.areas-section { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.85rem; margin-top: 2.5rem; }
.area-chip {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
}
.area-chip svg { width: 12px; height: 12px; stroke: var(--orange); }
.area-chip:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.area-chip.primary { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.area-chip.primary svg { stroke: var(--orange); }

/* ---------- CTA banner (dark feature) ---------- */
.cta-section { background: var(--charcoal); padding-block: 5rem; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); margin-bottom: 0.7rem; }
.cta-text p { color: rgba(255,255,255,0.58); max-width: 50ch; font-size: 1.02rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; flex-shrink: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--charcoal); padding-top: 96px; padding-bottom: 4rem; }
.page-hero .label { margin-bottom: 0.6rem; }
.page-hero h1 { color: var(--white); margin-bottom: 0.9rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 58ch; }

.breadcrumb { display: flex; gap: 0.4rem; align-items: center; font-family: var(--font-head); font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb svg { width: 10px; height: 10px; stroke: currentColor; }

/* ---------- Services detail (inner page) ---------- */
.service-detail {
  padding-block: 5rem;
  background: var(--white);
}
.service-detail:nth-child(even) { background: var(--off-white); }

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.service-detail:nth-child(even) .svc-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .svc-detail-content,
.service-detail:nth-child(even) .svc-detail-img { direction: ltr; }

.svc-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-detail-img img {
  width: 100%; height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.svc-detail-content .label { margin-bottom: 0.5rem; }
.svc-detail-content h2 { margin-bottom: 0.85rem; }
.svc-detail-content > p { margin-bottom: 1.4rem; font-size: 1.02rem; }

.feature-list { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.9rem; color: var(--text-mid); }
.feature-item svg { width: 15px; height: 15px; stroke: var(--orange); flex-shrink: 0; margin-top: 3px; }

/* Warranty badge */
.warranty-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--orange-light);
  border: 1px solid rgba(224,112,32,0.2);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 700;
  color: var(--orange-dark);
}
.warranty-badge svg { width: 16px; height: 16px; stroke: var(--orange); }

/* Jump nav */
.jump-nav {
  position: sticky; top: 64px; z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: 0.6rem;
}
.jump-nav-inner { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.jump-link {
  font-family: var(--font-head); font-size: 0.76rem; font-weight: 700;
  color: var(--text-mid); padding: 0.3rem 0.8rem;
  border-radius: 100px; border: 1px solid var(--border);
  transition: var(--transition); white-space: nowrap;
}
.jump-link:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.value-icon { width: 44px; height: 44px; background: var(--orange-light); border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 1rem; }
.value-icon svg { width: 22px; height: 22px; stroke: var(--orange); }
.value-card h3 { font-size: 1rem; margin-bottom: 0.45rem; }
.value-card p { font-size: 0.875rem; max-width: none; }

/* Timeline */
.timeline { position: relative; padding-left: 1.75rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 2.25rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -2.3rem; top: 5px; width: 13px; height: 13px; background: var(--orange); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--orange); }
.timeline-year { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 0.25rem; }
.timeline-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.875rem; margin: 0; }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.team-img { height: 180px; background: var(--charcoal); display: flex; align-items: center; justify-content: center; }
.team-img svg { width: 52px; height: 52px; stroke: rgba(255,255,255,0.18); }
.team-body { padding: 1.4rem; }
.team-body h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-role { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; color: var(--orange); text-transform: uppercase; margin-bottom: 0.6rem; }
.team-body p { font-size: 0.86rem; max-width: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.65fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.contact-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.contact-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.4rem; }
.contact-card > p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 2rem; max-width: none; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.4rem; }
.contact-icon { width: 38px; height: 38px; background: rgba(224,112,32,0.15); border-radius: var(--radius); display: grid; place-items: center; flex-shrink: 0; }
.contact-icon svg { width: 16px; height: 16px; stroke: var(--orange); }
.contact-info-label { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.15rem; }
.contact-info-value { font-family: var(--font-head); font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.contact-info-value a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--white); }

.contact-trust { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.07); }
.contact-trust-label { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.85rem; }
.contact-trust-item { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.contact-trust-item svg { width: 13px; height: 13px; stroke: var(--orange); }

.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; }
.form-wrap h3 { margin-bottom: 0.35rem; }
.form-wrap > p { font-size: 0.9rem; margin-bottom: 1.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text-dark); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,112,32,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy { font-size: 0.75rem; color: var(--text-light); margin-top: 0.65rem; max-width: none; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.faq-question {
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  color: var(--text-dark); display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; gap: 1rem;
}
.faq-question svg { width: 16px; height: 16px; stroke: var(--text-light); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 250px; padding-top: 0.7rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); padding-top: 4rem; padding-bottom: 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-top: 0.85rem; max-width: 28ch; }
.footer-logo { display: flex; align-items: center; gap: 0.55rem; }
.footer-logo-mark { width: 30px; height: 30px; background: var(--orange); border-radius: var(--radius); display: grid; place-items: center; }
.footer-logo-mark svg { width: 16px; height: 16px; }
.footer-logo-text { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: var(--white); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.87rem; color: rgba(255,255,255,0.55); }
.footer-contact-row svg { width: 13px; height: 13px; stroke: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-row a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-row a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ---------- Project Gallery ---------- */
.gallery-section { padding-block: var(--section-gap); background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
  margin-block: 2.5rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-mid);
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 1rem 1.1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item { height: 200px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
}

/* ---------- Fade-in util ---------- */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ---------- Misc utils ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: -0.75rem; right: 0.75rem; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .svc-detail-grid { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .cta-inner { text-align: center; justify-content: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
}
@media (max-width: 480px) {
  .hero { min-height: 55vh; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: 1rem; }
}
