/* ===================================================
   KCE Dynamics Limited — Main Stylesheet v3
   Theme: HK Group Official Palette
     Dark  #1C1C1C  — Header / Footer / Dark sections
     Gray  #C9C9C9  — Light Industrial Gray + Scratched Metal texture
     Gold  #C29F53  — Muted Gold (brand accent / utilities)
     Teal  #4A8B8B  — Core action accent (buttons, highlights)
     Terra #A85D45  — Section labels / category identifiers
   =================================================== */

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

:root {
  /* ── HK Group Official Palette ─────────────────── */
  --charcoal:      #1C1C1C;   /* Dark Charcoal/Off-Black — nav, footer, dark sections */
  --charcoal-mid:  #2A2A2A;
  --charcoal-deep: #111111;
  --gold:          #C29F53;   /* Muted Gold Accent — brand, utilities, icons */
  --gold-light:    #D4B06A;
  --gold-pale:     #EDE6D0;
  --teal:          #4A8B8B;   /* Core action accent */
  --teal-light:    #5A9D9D;
  --terracotta:    #A85D45;   /* Section labels / category identifiers */
  --concrete:      #C9C9C9;   /* Light Industrial Gray — base texture fallback */
  --concrete-dark: #B5B5B5;
  --white:         #FFFFFF;
  --off-white:     #F5F5F5;
  --text-dark:     #1C1C1C;
  --text-mid:      #4A4A4A;
  --text-light:    #888888;
  --border:        #D5D5D5;

  --font-sans:  'Inter', 'Segoe UI', Arial, sans-serif;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.10);
  --shadow-md:  0 6px 24px rgba(0,0,0,.14);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);
  --radius:     4px;
  --t:          0.25s ease;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 88px 0; }

/* ── Section textures — HK Group Official Palette ──
   Light: #C9C9C9 Light Industrial Gray + scratched-metal SVG
          (low X / high Y baseFrequency creates horizontal scratch marks)
   Dark:  #1C1C1C Dark Charcoal + fine grain noise
─────────────────────────────────────────────────────── */

/* Light Industrial Gray — scratched metal texture over #C9C9C9 */
.section--concrete {
  background-color: #C9C9C9;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='s'><feTurbulence type='turbulence' baseFrequency='0.035 0.68' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='400' height='400' filter='url(%23s)' opacity='0.38'/></svg>"),
    linear-gradient(160deg, rgba(255,255,255,.22) 0%, transparent 50%, rgba(0,0,0,.06) 100%);
  background-size: 400px 400px, 100% 100%;
}
.section--light   { background: var(--white); }

/* Dark Charcoal — fine noise grain */
.section--dark {
  background-color: #1C1C1C;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.22'/></svg>");
  background-size: 200px 200px;
  color: var(--white);
}
.section--charcoal { background: var(--charcoal-mid); color: var(--white); }

/* Dark Teal — used for philosophy / brand narrative sections */
.section--navy {
  background-color: #161E1E;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.20'/></svg>");
  background-size: 200px 200px;
  color: var(--white);
}
.section--navy .section__title { color: var(--white); }
.section--navy .section__subtitle { color: rgba(255,255,255,.6); }

.section__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.section--dark   .section__title,
.section--charcoal .section__title { color: var(--white); }

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.75;
}
.section--dark   .section__subtitle,
.section--charcoal .section__subtitle { color: rgba(255,255,255,.6); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--t), color var(--t), transform var(--t), border-color var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary  { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-light); border-color: var(--teal-light); }
.btn--outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn--sm { padding: 10px 20px; font-size: .8125rem; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--charcoal-deep);
  color: rgba(255,255,255,.65);
  font-size: .8125rem;
  padding: 8px 0;
  letter-spacing: .03em;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__item  { display: flex; align-items: center; gap: 6px; }
.topbar__item svg { flex-shrink: 0; }
.topbar__links { display: flex; gap: 20px; }
.topbar__links a:hover { color: var(--gold); }

/* ---- SITE HEADER — dark like HK Group ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

/* Logo — the KCE mark */
.nav__logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* White version needed for dark nav background */
  filter: brightness(0) invert(1);
}
/* Fallback when no image: SVG inline */
.nav__logo-svg {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.nav__logo-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.nav__logo-mark svg { width: 100%; height: 100%; color: white; }
.nav__logo-text { line-height: 1.2; }
.nav__logo-name {
  font-size: .875rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
}
.nav__logo-name em { color: var(--gold); font-style: normal; }
.nav__logo-tag {
  font-size: .625rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .12em;
  display: block;
}

/* Nav menu */
.nav__menu { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav__item  { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}
.nav__link:hover,
.nav__link.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav__link.active { color: var(--gold-light); }

.nav__chevron { width: 13px; height: 13px; transition: transform var(--t); }
.nav__item:hover .nav__chevron { transform: rotate(180deg); }

/* Staff Portal link — subdued, sits beside main CTA */
.nav__staff-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding: 7px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  transition: color var(--t), border-color var(--t), background var(--t);
  white-space: nowrap;
}
.nav__staff-link:hover {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.07);
}
/* Mobile nav portal item — slightly separated */
.nav__link--portal {
  opacity: .7;
  font-size: .75rem;
  gap: 6px;
}
.nav__link--portal:hover { opacity: 1; }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 200;
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: .8125rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color var(--t), background var(--t), padding-left var(--t);
}
.nav__dropdown a:hover { background: rgba(255,255,255,.06); color: var(--gold-light); padding-left: 24px; }

.nav__cta  { flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal-deep); /* solid fallback when video hasn't loaded */
}

/* Background video — sits behind all overlays */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* Subtle desaturation so it doesn't compete with gold accents */
  filter: saturate(.55) brightness(.9);
}
/* Pause for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__video { animation-play-state: paused; }
}

/* Dark gradient overlay — now semi-transparent so video shows through */
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.72) 0%,
    rgba(15,15,15,.64) 45%,
    rgba(25,25,25,.55) 100%
  );
  z-index: 1;
}

/* Gold grid overlay — hidden now that real video is present */
.hero__pattern {
  display: none;
}

/* Text content — always on top */
.hero__content { position: relative; z-index: 3; max-width: 700px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,139,139,.18);
  border: 1px solid rgba(74,139,139,.45);
  border-radius: 2px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7EC4C4;
  margin-bottom: 28px;
}
.hero__badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero__title em { font-style: normal; color: #7EC4C4; }
.hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}
.hero__scroll::after { content: ''; width: 1px; height: 32px; background: rgba(255,255,255,.25); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ---- STATS BAR ---- */
.stats-bar { background: var(--teal); padding: 20px 0; }
.stats-bar__grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; }
.stat { flex: 1; min-width: 160px; text-align: center; padding: 12px 24px; border-right: 1px solid rgba(255,255,255,.3); }
.stat:last-child { border-right: none; }
.stat__number { font-size: 1.875rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat__label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .08em; }

/* ---- QUICK-LINKS ROW (HK Group icon style) ---- */
.quick-links { padding: 56px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.quick-links__grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.quick-link-item { text-align: center; cursor: pointer; }
.quick-link-item a { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.quick-link-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  box-shadow: 0 4px 16px rgba(194,159,83,.3);
}
.quick-link-item:hover .quick-link-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 32px rgba(194,159,83,.4);
  background: var(--gold-light);
}
.quick-link-icon svg { color: white; }
.quick-link-label {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-dark);
  transition: color var(--t);
}
.quick-link-item:hover .quick-link-label { color: var(--gold); }

/* ---- SERVICES GRID (Cards) ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.service-card__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(194,159,83,.25);
  transition: transform var(--t), box-shadow var(--t);
}
.service-card:hover .service-card__circle {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(194,159,83,.35);
}
.service-card__circle svg { color: white; }
.service-card__title { font-size: 1rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; }
.service-card__desc { font-size: .9375rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); transition: gap var(--t); }
.service-card__link:hover { gap: 10px; }

/* ---- ABOUT TEASER ---- */
.about-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-teaser__box {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-teaser__box::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(194,159,83,.12);
  line-height: 1;
  font-family: Georgia, serif;
}
.about-teaser__quote { font-size: 1.25rem; font-weight: 500; line-height: 1.65; position: relative; z-index: 1; }
.about-teaser__quote em { font-style: italic; color: var(--gold-light); }
.about-teaser__accent { width: 52px; height: 3px; background: var(--gold); margin-top: 24px; }

.about-teaser__text p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }
.about-teaser__list { margin: 24px 0 32px; }
.about-teaser__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .9375rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.about-teaser__list li:last-child { border-bottom: none; }
.about-teaser__list li::before { content: ''; width: 7px; height: 7px; min-width: 7px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }

/* ---- PROJECTS ---- */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.project-card__thumb {
  height: 200px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card__thumb-pattern {
  display: none;
}
.project-card__type-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
/* Project card video (renovation project) */
.project-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(.72) saturate(.75);
}

/* Project card photo — sits below the pattern overlay */
.project-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform .45s ease;
  /* slightly desaturate so the gold grid reads clearly */
  filter: brightness(.72) saturate(.75);
}
.project-card:hover .project-card__img { transform: scale(1.05); }
.project-card__type-badge     { z-index: 2; }
.project-card__icon           { display: none; }

/* Project detail photo (projects.html full-width visual panel) */
.project-detail__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  border-radius: var(--radius);
  filter: brightness(.68) saturate(.8);
}
/* Project detail video (renovation detail panel) */
.project-detail__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  border-radius: var(--radius);
  filter: brightness(.68) saturate(.8);
}
.service-detail__visual-icon    { display: none; }

/* ---- CAREERS FORM ---- */
/* CV / Resume upload area */
.cv-upload {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  background: var(--off-white);
}
.cv-upload:hover,
.cv-upload.has-file { border-color: var(--teal); background: rgba(74,139,139,.05); }
.cv-upload__icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform var(--t);
}
.cv-upload:hover .cv-upload__icon { transform: translateY(-2px); }
.cv-upload__text { line-height: 1.4; }
.cv-upload__main {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--charcoal);
}
.cv-upload__main.file-selected { color: var(--gold); }
.cv-upload__sub {
  display: block;
  font-size: .775rem;
  color: var(--text-light);
  margin-top: 2px;
}
/* Hide the native file input visually but keep it accessible */
.cv-upload__input {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
/* Careers success card */
.careers-success {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.careers-success__icon {
  width: 64px; height: 64px;
  background: #5A8A1F;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  margin: 0 auto 20px;
}
.careers-success h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.careers-success p {
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}
.project-card__body { padding: 24px; }
.project-card__title { font-size: 1rem; font-weight: 700; letter-spacing: .02em; color: var(--charcoal); margin-bottom: 6px; }
.project-card__location { display: flex; align-items: center; gap: 4px; font-size: .8125rem; color: var(--text-light); margin-bottom: 12px; }
.project-card__desc { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }
.project-card__footer { padding: 14px 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.project-card__tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); }

/* ---- PROCESS (on dark bg) ---- */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(74,139,139,.5), transparent); }
.step { text-align: center; padding: 0 20px; position: relative; }
.step__number {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.25rem; font-weight: 800;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(74,139,139,.35);
}
.step__title { font-size: .9375rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.step__desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--charcoal); gap: 16px; }
.faq-question:hover { color: var(--gold); }
.faq-question svg { flex-shrink: 0; transition: transform var(--t); color: var(--gold); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; color: var(--text-mid); font-size: .9375rem; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background-color: #1C1C1C;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.22'/></svg>");
  background-size: 200px 200px;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,139,139,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,139,139,.05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.01em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.cta-banner__sub { color: rgba(255,255,255,.6); font-size: 1.0625rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---- FOOTER — dark charcoal with fine grain ---- */
.site-footer {
  background-color: #1C1C1C;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.22'/></svg>"),
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, transparent 35%);
  background-size: 200px 200px, 100% 100%;
  color: rgba(255,255,255,.65);
  padding-top: 64px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }

/* Logo in footer uses white/inverted color */
.footer__logo-img { height: 56px; width: auto; filter: brightness(0) invert(1); }
.footer__logo-svg { display: flex; align-items: center; gap: 10px; color: white; }
.footer__logo-mark svg { width: 40px; height: 40px; color: white; }
.footer__logo-name { font-size: .8125rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--white); display: block; }
.footer__logo-name em { color: var(--gold); font-style: normal; }
.footer__logo-tag { font-size: .6rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; display: block; }

.footer__tagline { font-size: .875rem; line-height: 1.75; margin-bottom: 24px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: border-color var(--t), color var(--t), background var(--t);
}
.footer__social a:hover { border-color: var(--teal); color: var(--teal); background: rgba(74,139,139,.12); }

.footer__col-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer__links a:hover { color: var(--white); }

.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer__contact-item span { font-size: .875rem; line-height: 1.5; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: .8rem; }
.footer__legal { display: flex; gap: 20px; font-size: .8rem; }
.footer__legal a { color: rgba(255,255,255,.4); transition: color var(--t); }
.footer__legal a:hover { color: var(--white); }

/* ---- PAGE HERO (inner pages) — dark charcoal + fine grain ---- */
.page-hero {
  background-color: #1C1C1C;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.22'/></svg>");
  background-size: 200px 200px;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,139,139,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,139,139,.05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .8125rem; color: rgba(255,255,255,.4); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }
.page-hero__breadcrumb a { color: #7EC4C4; }
.page-hero__breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero__title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; color: var(--white); margin-bottom: 14px; }
.page-hero__sub { font-size: 1.0625rem; color: rgba(255,255,255,.6); max-width: 560px; }

/* ---- ABOUT PAGE ---- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--border); border-left: 4px solid var(--gold); }
.value-card__title { font-size: .9375rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; }
.value-card__text { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.team-card { text-align: center; padding: 40px 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.team-card__avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem; font-weight: 800; color: var(--gold);
  letter-spacing: .04em;
  border: 3px solid var(--gold);
}
.team-card__name { font-size: 1.125rem; font-weight: 700; letter-spacing: .04em; color: var(--charcoal); margin-bottom: 4px; }
.team-card__role { font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.team-card__bio { font-size: .875rem; color: var(--text-mid); line-height: 1.75; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info__item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-info__item:first-child { border-top: 1px solid var(--border); }
.contact-info__icon { width: 46px; height: 46px; background: var(--charcoal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon svg { color: var(--gold); }
.contact-info__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); font-weight: 700; margin-bottom: 4px; }
.contact-info__value { font-size: .9375rem; color: var(--text-dark); font-weight: 500; }
.contact-info__value a:hover { color: var(--gold); }

.contact-form { background: var(--concrete); border-radius: var(--radius); padding: 40px 36px; border: 1px solid var(--border); }
.contact-form__title { font-size: 1.125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); font-family: var(--font-sans);
  font-size: .9375rem; color: var(--text-dark);
  transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(74,139,139,.14); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- SERVICE DETAIL (services/projects pages) ---- */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) .service-detail__visual { order: -1; }
.service-detail__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 4px 16px rgba(194,159,83,.25); }
.service-detail__icon svg { color: white; }
.service-detail__title { font-size: 1.625rem; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; color: var(--charcoal); margin-bottom: 14px; }
.service-detail__desc { font-size: .9375rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.service-detail__list { margin-bottom: 28px; }
.service-detail__list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: .9375rem; color: var(--text-dark); }
.service-detail__list li::before { content: ''; width: 7px; height: 7px; min-width: 7px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.service-detail__visual { background: var(--charcoal-mid); border-radius: var(--radius); min-height: 320px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.service-detail__visual-pattern { display: none; }
.service-detail__visual-icon    { display: none; }

/* ---- LOCATIONS ---- */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.location-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; gap: 18px; }
.location-card__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--charcoal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.location-card__icon svg { color: var(--gold); }
.location-card__title { font-size: .9375rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 4px; }
.location-card__role { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.location-card__detail { font-size: .875rem; color: var(--text-mid); line-height: 1.65; }

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-center .section__subtitle { margin-left: auto; margin-right: auto; }
.mt-8  { margin-top: 8px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.gold  { color: var(--gold); }
.divider { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 auto 24px; }
.divider--left { margin: 0 0 24px; }

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

/* ══════════════════════════════════════════
   WHATSAPP WIDGET
══════════════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--t), box-shadow var(--t);
  cursor: pointer;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.wa-btn svg { color: white; flex-shrink: 0; }

/* Pulsing ring */
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
  opacity: 0;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .7; }
  80%  { transform: scale(1.5); opacity: 0;  }
  100% { transform: scale(1.5); opacity: 0;  }
}

.wa-tooltip {
  background: var(--charcoal);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px) translateX(0);
  transition: opacity var(--t), transform var(--t);
  pointer-events: none;
  letter-spacing: .03em;
}
.wa-widget:hover .wa-tooltip { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   PROJECT STARTER — Interactive Widget
══════════════════════════════════════════ */
.ps-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 10px;
}

.ps-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 13px 20px 13px 15px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  border: 2px solid var(--gold);
}
.ps-trigger:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(194,159,83,.4); }
.ps-trigger svg { color: var(--gold); flex-shrink: 0; transition: color var(--t); }
.ps-trigger:hover svg { color: white; }

.ps-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
  overflow: hidden;
  transform-origin: bottom left;
  transform: scale(.92) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.ps-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

.ps-panel-header {
  background: var(--charcoal);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ps-panel-header h4 {
  color: var(--white);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ps-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: color var(--t);
  padding: 0;
}
.ps-close-btn:hover { color: var(--white); }

.ps-body { padding: 24px 20px; }

.ps-step-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.ps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--t), transform var(--t);
}
.ps-dot.active { background: var(--gold); transform: scale(1.3); }
.ps-dot.done   { background: var(--charcoal); }

.ps-question {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.ps-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ps-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.ps-option:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateX(4px); }
.ps-option.selected { border-color: var(--gold); background: var(--gold-pale); color: var(--charcoal); }

.ps-result {
  text-align: center;
}
.ps-result-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.ps-result-icon svg { color: white; }
.ps-result h4 { font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ps-result p { font-size: .875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }
.ps-result-cta { width: 100%; justify-content: center; margin-bottom: 10px; }
.ps-restart-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: .8125rem;
  color: var(--text-light);
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
  transition: color var(--t);
}
.ps-restart-btn:hover { color: var(--charcoal); }

/* ---- BUILDING WIDGET ---- */
.bw-widget {
  position: fixed;
  right: 28px;
  bottom: 108px;
  z-index: 9997;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.bw-trigger {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform var(--t), background var(--t);
  position: relative;
  flex-shrink: 0;
}
.bw-trigger:hover { transform: scale(1.1); background: var(--charcoal-mid); }
.bw-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  font-size: .6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .3s;
}
.bw-tooltip {
  background: var(--charcoal);
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
}
.bw-widget:hover .bw-tooltip { opacity: 1; transform: none; }
.bw-panel {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  border: 1px solid var(--border);
  width: 230px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(.97);
  pointer-events: none;
  transition: opacity .22s, transform .22s;
  order: -1;
}
.bw-panel.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.bw-panel-header {
  background: var(--charcoal);
  color: #fff;
  padding: 11px 14px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bw-panel-header span { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.bw-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 0;
  transition: color var(--t);
}
.bw-close:hover { color: #fff; }
.bw-stage-area {
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bw-stage-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold);
}
.bw-svg-frame {
  width: 140px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.bw-svg-frame svg { width: 100%; height: 100%; display: block; }
.bw-stage-counter {
  font-size: .7rem;
  color: var(--text-light);
  letter-spacing: .04em;
}
.bw-build-btn {
  width: 100%;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 11px 0;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t);
}
.bw-build-btn:hover { background: var(--gold-light); }
.bw-complete {
  padding: 14px 16px 18px;
  text-align: center;
}
.bw-complete-icon {
  width: 42px; height: 42px;
  background: #6B8E3B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #fff;
}
.bw-complete .bw-svg-frame { width: 100%; height: 90px; margin: 0 auto 10px; }
.bw-complete h4 { font-size: .8125rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.bw-complete p { font-size: .75rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.bw-rebuild-btn {
  background: none; border: 1px solid var(--gold);
  color: var(--gold); font-family: var(--font-sans);
  font-size: .75rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 7px 16px;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: background var(--t), color var(--t);
}
.bw-rebuild-btn:hover { background: var(--gold); color: var(--charcoal); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-teaser { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav__menu, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--charcoal);
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }
  .nav__menu.mobile-open .nav__dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    background: rgba(255,255,255,.05);
    border-radius: var(--radius);
    margin: 4px 0 4px 20px;
    padding: 4px 0;
  }
  .topbar { display: none; }
  .hero { min-height: 540px; }
  .stats-bar__grid { gap: 0; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); min-width: 50%; }
  .stat:last-child { border-bottom: none; }
  .quick-links__grid { gap: 28px; }
  .quick-link-icon { width: 72px; height: 72px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail:nth-child(even) .service-detail__visual { order: 0; }
  .locations-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .ps-panel { width: 290px; }
  .ps-widget { left: 14px; bottom: 20px; }
  .wa-widget  { right: 14px; bottom: 20px; }
  .bw-widget  { right: 14px; bottom: 96px; }
  .bw-panel   { width: 220px; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
