/* ===== Variables ===== */
:root {
  --navy: #0d2137;
  --navy-dark: #081525;
  --navy-light: #1a3a5c;
  --accent: #00695c;
  --accent-hover: #004d43;
  --charcoal: #1a1a1a;
  --white: #ffffff;
  --gray-light: #e8e8e8;
  --gray-text: #666666;
  --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 1280px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,64,0.35); }
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,105,92,0.35); }
.btn-red { background: var(--accent); color: var(--white); }
.btn-red:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,105,92,0.35); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* ===== Top Bar (Drywall Interiors) ===== */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
  transition: transform 0.35s ease;
}
.top-bar a { color: var(--white); }
.top-bar .phone-icon { margin: 0 4px; }

/* ===== Navigation ===== */
.main-nav {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 16px 0;
  transition: background var(--transition), top var(--transition), box-shadow var(--transition), padding var(--transition);
  overflow: visible;
}
.main-nav.scrolled {
  top: 0;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 10px 0;
}
.main-nav .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  position: relative;
}
.main-nav .logo img { height: 48px; width: auto; transition: filter var(--transition); }
.main-nav:not(.scrolled) .logo img { filter: brightness(0) invert(1); }
.main-nav.scrolled .logo img { filter: none; }

.nav-links {
  display: flex;
  gap: 2px;
  align-items: stretch;
  justify-content: flex-end;
  overflow: visible;
}
.nav-links > li { position: relative; overflow: visible; }
.nav-links > li > a,
.nav-links .nav-trigger {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: none;
}
.main-nav.scrolled .nav-links > li > a,
.main-nav.scrolled .nav-links .nav-trigger { color: var(--navy); }
.nav-links > li > a.active,
.nav-links > li > a:hover,
.nav-links .nav-trigger:hover,
.nav-item.is-open > .nav-trigger,
.nav-item:hover > .nav-trigger {
  background: var(--navy);
  color: var(--white);
}
.main-nav.scrolled .nav-links > li > a.active,
.main-nav.scrolled .nav-links > li > a:hover,
.main-nav.scrolled .nav-links .nav-trigger:hover,
.main-nav.scrolled .nav-item.is-open > .nav-trigger,
.main-nav.scrolled .nav-item:hover > .nav-trigger {
  background: var(--navy);
  color: var(--white);
}

/* Chevron indicator */
.nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-item.is-open .nav-chevron,
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Hover bridge – prevents gap between trigger and menu */
.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 28px;
  z-index: 2001;
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  border-top: 3px solid var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0s linear 0.35s;
  z-index: 2002;
  pointer-events: none;
}
/* Invisible pad above panel – keeps hover path connected to trigger */
.nav-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown.is-open .nav-dropdown,
.nav-item.has-dropdown.menu-hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px);
  pointer-events: auto;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s linear 0s;
}
.nav-dropdown--mega { min-width: 520px; }
.nav-dropdown--align-right { left: auto; right: 0; }

.nav-dropdown__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 14px 18px 8px;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 4px;
}
.nav-dropdown__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.nav-dropdown__col { padding: 4px 0 8px; }
.nav-dropdown__col + .nav-dropdown__col {
  border-left: 1px solid var(--gray-light);
}
.nav-dropdown a {
  display: block;
  color: var(--navy) !important;
  background: transparent !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: none;
  padding: 10px 18px;
  border-bottom: none;
  transition: background var(--transition), color var(--transition);
  white-space: normal;
}
.nav-dropdown a:hover {
  background: #f0f7f6 !important;
  color: var(--accent) !important;
}
.nav-dropdown a.nav-dropdown__featured {
  background: var(--navy) !important;
  color: var(--white) !important;
  margin: 8px 12px 12px;
  padding: 10px 14px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.nav-dropdown a.nav-dropdown__featured:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
}
.nav-dropdown__name {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: var(--navy);
  margin-bottom: 2px;
}
.nav-dropdown__desc {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-text);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}
.nav-dropdown a:hover .nav-dropdown__name { color: var(--accent); }

/* ===== Hero 1 – Standard Drywall Style ===== */
.hero-sdi {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-sdi__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
}
.hero-sdi__bg {
  position: absolute;
  inset: -8%;
  background: url('img/hero-home-plaster.jpg') center/cover no-repeat;
  animation: heroBgDrift 28s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-sdi__fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-sdi__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(8,21,37,0.72) 0%, rgba(0,105,92,0.28) 50%, rgba(8,21,37,0.65) 100%);
}
.hero-sdi__content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}
.hero-sdi__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8fd9cf;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeUp 0.9s ease forwards 0.15s;
}
.hero-sdi__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  max-width: 700px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease forwards 0.3s;
}
.hero-sdi__subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,0.85);
  margin: 20px 0 32px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease forwards 0.6s;
}
.hero-sdi__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease forwards 0.9s;
}
.scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: heroFadeUp 1s ease forwards 1.2s;
}
.scroll-indicator__arrow {
  writing-mode: horizontal-tb;
  animation: scrollBounce 2s ease-in-out infinite;
  font-size: 18px;
}

@keyframes heroBgDrift {
  0% { transform: scale(1.05) translate(0, 0) rotate(0deg); }
  50% { transform: scale(1.12) translate(-1.5%, -0.5%) rotate(0.3deg); }
  100% { transform: scale(1.08) translate(1%, 1%) rotate(-0.2deg); }
}
@keyframes kenBurnsSDI {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== About / Partner Section ===== */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-wireframe {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-wireframe.visible { opacity: 1; transform: translateX(0); }
.about-wireframe img { max-height: 500px; object-fit: contain; margin: 0 auto; }
.about-content { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s; }
.about-content.visible { opacity: 1; transform: translateX(0); }
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.3;
}
.about-content p { color: var(--gray-text); margin-bottom: 16px; font-size: 15px; }
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-card {
  position: relative;
  height: 180px;
  overflow: hidden;
  cursor: pointer;
  group: card;
}
.about-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.about-card:hover .about-card__bg { transform: scale(1.08); }
.about-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background var(--transition);
}
.about-card:hover .about-card__overlay { background: rgba(0,0,64,0.65); }
.about-card__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Mission Banner ===== */
.mission-banner {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}
.mission-banner__bg {
  position: absolute;
  inset: -20%;
  background: url('img/banner-mission-finish.jpg') center/cover no-repeat fixed;
  will-change: transform;
}
.mission-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.mission-banner__text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.mission-banner__text.visible { opacity: 1; transform: translateY(0); }

/* ===== Hero 2 – Drywall Interiors Style ===== */
.hero-di {
  position: relative;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-di__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-di__bg {
  position: absolute;
  inset: -10%;
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2137 100%);
  animation: kenBurnsDI 30s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-di__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,64,0.15);
}
.hero-di__cta {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.2s ease forwards 0.5s;
}
.hero-di__cta .btn { padding: 14px 48px; font-size: 14px; border-radius: 6px; }

@keyframes kenBurnsDI {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1.5%, -1%); }
}

/* ===== Who We Are / Services ===== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-left {
  background: var(--navy);
  color: var(--white);
  padding: 60px 48px;
}
.split-right {
  background: var(--white);
  padding: 60px 48px;
}
.split-left h2, .split-right h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.split-left p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; opacity: 0.9; }
.split-left__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.split-left__img.visible { opacity: 1; transform: translateY(0); }
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 24px 0 32px;
}
.services-list li {
  font-size: 14px;
  padding-left: 18px;
  position: relative;
  color: #444;
}
.services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--navy);
}
.split-right h2 { color: var(--navy); }

/* ===== Scopes & Services Grid ===== */
.scopes-section { padding: 100px 0; background: var(--white); }
.scope-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.scope-row:last-child { margin-bottom: 0; }
.scope-row.reverse .scope-text { order: 2; }
.scope-row.reverse .scope-images { order: 1; }
.scope-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.scope-text p { color: var(--gray-text); margin-bottom: 24px; font-size: 15px; }
.scope-images { display: flex; gap: 16px; flex-wrap: wrap; }
.scope-images img {
  flex: 1;
  min-width: 200px;
  height: 260px;
  object-fit: cover;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scope-images img.visible { opacity: 1; transform: translateY(0); }
.scope-images img:nth-child(2) { transition-delay: 0.15s; }

/* ===== Proud Member ===== */
.members-section {
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.members-section h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 36px;
}
.members-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.member-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.member-logo.visible { opacity: 1; transform: translateY(0); }
.member-logo svg, .member-logo img { max-height: 60px; }

/* ===== Markets Section ===== */
.markets-section {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  padding: 100px 0;
  overflow: hidden;
}
.markets-section__wireframe {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  opacity: 0.12;
  pointer-events: none;
  transition: transform 0.1s linear;
}
.markets-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}
.markets-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}
.markets-header p { color: rgba(255,255,255,0.7); font-size: 15px; }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.market-card {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.market-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.market-card:hover .market-card__bg { transform: scale(1.1); }
.market-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background var(--transition);
}
.market-card:hover .market-card__overlay { background: rgba(0,105,92,0.55); }
.market-card__title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  color: var(--white);
}
.markets-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.markets-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.markets-dots span.active { background: var(--accent); transform: scale(1.2); }

/* ===== Portfolio ===== */
.portfolio-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--white);
}
.portfolio-section h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.portfolio-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: 4px;
}
.portfolio-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-slide {
  min-width: 100%;
  height: 400px;
}
.portfolio-slide img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.portfolio-nav button {
  width: 40px;
  height: 40px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.portfolio-nav button:hover { background: var(--navy); color: var(--white); }

/* ===== Locations ===== */
.locations-section {
  padding: 100px 0;
  background: #f5f5f5;
}
.locations-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.locations-map img { max-width: 100%; opacity: 0.85; }
.locations-intro h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.locations-intro p { color: var(--gray-text); margin-bottom: 24px; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.location-item h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.location-item p { font-size: 13px; color: var(--gray-text); line-height: 1.7; }

/* ===== Join Team ===== */
.join-section {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}
.join-section__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
}
.join-section__bg {
  position: absolute;
  inset: -10%;
  background: url('img/join-cta-bg.jpg') center/cover no-repeat;
  animation: kenBurnsSDI 30s ease-in-out infinite alternate-reverse;
  will-change: transform;
}
.join-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.join-section__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.join-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.join-section h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.join-section p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 15px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col p, .footer-col li { font-size: 13px; line-height: 1.8; opacity: 0.85; }
.footer-col ul li { margin-bottom: 4px; }
.footer-col a { transition: opacity var(--transition); }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-col .footer-logo img { height: 45px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-col .email-link { color: #6eb5ff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 16px 0;
  text-align: center;
  font-size: 11px;
  opacity: 0.6;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== Services Overview (Homepage) ===== */
.services-overview { padding: 100px 0; background: var(--white); }
.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 15px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-card {
  background: #f7f9fa;
  border-top: 4px solid var(--accent);
  padding: 28px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.service-card__num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  display: block;
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.service-card p { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin: 0; }

/* ===== Service Detail Page ===== */
.service-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  display: block;
  margin-bottom: 8px;
}
.service-lead {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-features {
  list-style: none;
  margin: 0 0 28px;
}
.service-features li {
  font-size: 14px;
  color: var(--gray-text);
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--accent);
}
.standards-banner {
  background: var(--navy);
  color: var(--white);
  padding: 40px 48px;
  margin: 64px auto;
  max-width: 1280px;
}
.standards-banner h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.standards-banner p { font-size: 14px; opacity: 0.85; line-height: 1.8; margin: 0; }

/* ===== Project Gallery ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-filters--home { margin-bottom: 32px; }
.gallery-filter {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  display: inline-block;
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--navy);
  color: var(--white);
}
.projects-list { display: flex; flex-direction: column; gap: 80px; }
.project-card {
  border: 1px solid var(--gray-light);
  padding: 40px;
  background: var(--white);
}
.project-card__header { margin-bottom: 28px; }
.project-card__header h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 8px;
}
.project-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
}

/* Before / After Compare */
.before-after { margin-bottom: 32px; }
.ba-compare {
  position: relative;
  height: 420px;
  overflow: hidden;
  cursor: ew-resize;
  --ba-split: 50%;
  user-select: none;
}
.ba-image {
  position: absolute;
  inset: 0;
}
.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before { z-index: 1; clip-path: inset(0 calc(100% - var(--ba-split)) 0 0); }
.ba-after { z-index: 0; }
.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 3;
}
.ba-label--after { left: auto; right: 16px; }
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-split);
  width: 4px;
  background: var(--white);
  z-index: 4;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  cursor: ew-resize;
}
.ba-divider::after {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  color: var(--navy);
  font-size: 10px;
  padding: 8px 6px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 2px;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 32px;
}
.project-meta__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 6px;
}
.project-meta__item span { font-size: 14px; color: var(--gray-text); line-height: 1.6; }
.project-details h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 20px;
}
.project-details__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.project-details figure { margin: 0; }
.project-details figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.project-details figcaption {
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 8px;
  text-align: center;
}
.gallery-cta {
  text-align: center;
  padding: 60px 0 20px;
}
.gallery-cta p { color: var(--gray-text); margin-bottom: 20px; }
.gallery-empty {
  text-align: center;
  color: var(--gray-text);
  padding: 40px;
}

/* Featured projects (homepage) */
.featured-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.featured-project {
  display: block;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.featured-project:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.featured-project img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.featured-project__info { padding: 20px; }
.featured-project__info h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 8px;
  line-height: 1.4;
}
.portfolio-section { padding: 100px 0; background: #f7f9fa; }

/* ===== Subpages ===== */
body.subpage { padding-top: 0; }
body.subpage .main-nav {
  top: 0;
  position: sticky;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 2000;
  overflow: visible;
}
body.subpage .main-nav .logo img { filter: none; }
body.subpage .main-nav .nav-links > li > a,
body.subpage .main-nav .nav-links .nav-trigger { color: var(--navy); }
body.subpage .main-nav .nav-links > li > a.active,
body.subpage .main-nav .nav-links > li > a:hover,
body.subpage .main-nav .nav-links .nav-trigger:hover,
body.subpage .main-nav .nav-item.is-open > .nav-trigger,
body.subpage .main-nav .nav-item:hover > .nav-trigger {
  background: var(--navy);
  color: var(--white);
}

.page-header {
  position: relative;
  color: var(--white);
  padding: 100px 0 56px;
  margin-top: 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}
/* Subpages only – hero background area doubled in height */
body.subpage .page-header {
  min-height: 600px;
  padding: 200px 0 112px;
  background-position: center center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,33,55,0.88) 0%, rgba(13,33,55,0.45) 100%);
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.page-header p { opacity: 0.85; font-size: 16px; }

.page-placeholder {
  min-height: 320px;
  padding: 80px 0;
}

.page-content { padding: 60px 0 80px; }
.content-block { margin-bottom: 64px; }
.content-block h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.content-block p { color: var(--gray-text); margin-bottom: 14px; max-width: 820px; }
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.content-card {
  background: #f7f9fa;
  border-left: 4px solid var(--accent);
  padding: 24px;
}
.content-card h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.content-card p { font-size: 14px; color: var(--gray-text); margin: 0; }
.content-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
  margin-top: 16px;
}
.content-list li {
  font-size: 14px;
  color: var(--gray-text);
  padding-left: 16px;
  position: relative;
}
.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.service-detail { margin-bottom: 64px; }
.service-detail.alt { background: #f7f9fa; padding: 48px 0; margin-bottom: 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.service-detail p { color: var(--gray-text); margin-bottom: 12px; }
.service-detail img { width: 100%; height: 320px; object-fit: cover; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-block h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-form-block > p { color: var(--gray-text); margin-bottom: 28px; }
.contact-form .form-row { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--navy);
  color: var(--white);
  padding: 28px 32px;
}
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.contact-card p { font-size: 14px; line-height: 1.8; opacity: 0.9; }
.contact-card a { color: #8fd9cf; }
.contact-card a:hover { text-decoration: underline; }
.locations-map .contact-card { max-width: 420px; }

.legal-content {
  padding: 48px 40px 80px;
  max-width: 900px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}
.legal-content p, .legal-content li {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul { margin: 12px 0 12px 24px; list-style: disc; }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* ===== Mobile Menu Toggle (hidden – desktop only) ===== */
.nav-toggle { display: none !important; }

/* ===== Content & layout extensions ===== */
.page-header--solid {
  background-image: none;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.prose { max-width: 900px; }
.prose p { color: var(--gray-text); margin-bottom: 14px; line-height: 1.75; }
.prose .service-lead { font-size: 17px; color: var(--navy); font-weight: 600; margin-bottom: 20px; }
.prose .service-num {
  display: inline-block;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}
.service-features { margin: 20px 0; padding-left: 20px; list-style: disc; }
.service-features li { color: var(--gray-text); margin-bottom: 8px; font-size: 14px; }
.standards-banner {
  background: var(--navy);
  color: var(--white);
  padding: 28px 32px;
  margin: 48px 0;
  font-size: 15px;
  line-height: 1.7;
  border-left: 4px solid var(--accent);
}
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; align-items: stretch; }
.bento-item { border-radius: 4px; overflow: hidden; min-height: 120px; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.bento-item--lg { grid-column: span 6; }
.bento-item--md { grid-column: span 4; }
.bento-item--sm { grid-column: span 3; }
.bento-item:hover { transform: translateY(-3px); transition: transform var(--transition); }
.stats-bar { background: var(--navy); color: var(--white); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; display: block; margin-bottom: 8px; }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.insight-card {
  border: 1px solid var(--gray-light);
  overflow: hidden;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.insight-card img { width: 100%; height: 220px; object-fit: cover; }
.insight-card__body { padding: 20px; }
.insight-card__body h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.insight-card__body p { font-size: 13px; color: var(--gray-text); line-height: 1.6; }
.insight-preview-grid { grid-template-columns: repeat(3, 1fr) !important; }
.insight-preview-card { display: block; transition: transform var(--transition); }
.insight-preview-card:hover { transform: translateY(-3px); }
.project-case-study .content-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: 4px; }
.quote-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 32px 0; }
.quote-process__step { background: #f7f9fa; padding: 24px; border-left: 4px solid var(--accent); }
.quote-process__step strong { display: block; color: var(--navy); margin-bottom: 8px; font-size: 13px; text-transform: uppercase; }
.quote-process__step p { font-size: 13px; color: var(--gray-text); margin: 0; }
.project-card { margin-bottom: 32px; border: 1px solid var(--gray-light); overflow: hidden; }
.project-card__header { padding: 20px 24px 0; }
.project-card__header h3 { font-size: 18px; color: var(--navy); margin: 8px 0 0; }
.project-card__link { display: block; }
.project-card__link img { width: 100%; height: 280px; object-fit: cover; }
.scope-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin: 40px 0; }
.scope-images img { width: 100%; height: 280px; object-fit: cover; }
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.market-card { position: relative; height: 180px; overflow: hidden; border-radius: 4px; }
.market-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.market-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent, rgba(13,33,55,0.85));
  display: flex; align-items: flex-end; padding: 16px;
}
.market-card__title { color: var(--white); font-weight: 700; font-size: 14px; text-transform: uppercase; }
.featured-projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@keyframes statPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.85; } }
.stat-item.visible .stat-num { animation: statPulse 3s ease-in-out infinite; }

/* ===== Homepage hero plastering FX ===== */
.hero-fx-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: heroGridSlide 24s linear infinite;
  opacity: 0.5;
}
.hero-fx-sweep {
  position: absolute;
  left: -20%;
  top: 35%;
  width: 140%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(143,217,207,0.9), transparent);
  box-shadow: 0 0 24px rgba(143,217,207,0.5);
  animation: heroTrowelSweep 7s ease-in-out infinite;
}
.hero-fx-corners { position: absolute; inset: 12%; }
.hero-fx-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(143,217,207,0.55);
  animation: heroCornerPulse 4s ease-in-out infinite;
}
.hero-fx-corner--tl { top: 0; left: 0; border-right: none; border-bottom: none; animation-delay: 0s; }
.hero-fx-corner--tr { top: 0; right: 0; border-left: none; border-bottom: none; animation-delay: 1s; }
.hero-fx-corner--bl { bottom: 0; left: 0; border-right: none; border-top: none; animation-delay: 2s; }
.hero-fx-corner--br { bottom: 0; right: 0; border-left: none; border-top: none; animation-delay: 3s; }
.hero-fx-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  animation: heroParticleFloat 12s ease-in-out infinite;
}
.hero-fx-particles span:nth-child(1) { left: 12%; top: 22%; animation-duration: 14s; }
.hero-fx-particles span:nth-child(2) { left: 28%; top: 68%; animation-duration: 11s; animation-delay: 1s; }
.hero-fx-particles span:nth-child(3) { left: 45%; top: 35%; animation-duration: 16s; animation-delay: 2s; }
.hero-fx-particles span:nth-child(4) { left: 62%; top: 55%; animation-duration: 10s; animation-delay: 0.5s; }
.hero-fx-particles span:nth-child(5) { left: 78%; top: 28%; animation-duration: 13s; animation-delay: 3s; }
.hero-fx-particles span:nth-child(6) { left: 88%; top: 72%; animation-duration: 15s; animation-delay: 1.5s; }
.hero-fx-particles span:nth-child(7) { left: 18%; top: 48%; animation-duration: 9s; animation-delay: 2.5s; }
.hero-fx-particles span:nth-child(8) { left: 52%; top: 78%; animation-duration: 12s; animation-delay: 4s; }
.hero-fx-particles span:nth-child(9) { left: 70%; top: 42%; animation-duration: 11s; animation-delay: 0.8s; }
.hero-fx-particles span:nth-child(10) { left: 36%; top: 18%; animation-duration: 17s; animation-delay: 3.5s; }
.hero-fx-level {
  position: absolute;
  right: 8%;
  bottom: 18%;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
}
.hero-fx-level__bar {
  width: 120px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.hero-fx-level__bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #8fd9cf);
  animation: heroLevelFill 5s ease-in-out infinite;
}
.hero-fx-level__label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
@keyframes heroGridSlide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(48px, 48px); }
}
@keyframes heroTrowelSweep {
  0%, 100% { transform: translateY(-120px); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translateY(180px); opacity: 1; }
  85% { opacity: 0; }
}
@keyframes heroCornerPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes heroParticleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.2; }
  25% { transform: translate(12px, -18px); opacity: 0.7; }
  50% { transform: translate(-8px, -32px); opacity: 0.4; }
  75% { transform: translate(16px, -12px); opacity: 0.8; }
}
@keyframes heroLevelFill {
  0%, 100% { width: 20%; }
  50% { width: 95%; }
}

/* ===== Homepage craft strip ===== */
.home-craft-strip {
  background: linear-gradient(180deg, #f7f9fa 0%, var(--white) 100%);
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-light);
}
.home-craft-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.home-craft-strip__text h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 12px;
}
.home-craft-strip__text p { color: var(--gray-text); line-height: 1.7; }
.home-craft-strip__visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.home-craft-strip__visuals img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.home-craft-strip__visuals img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(13,33,55,0.15);
}

/* ===== Enhanced homepage sections ===== */
.services-grid .service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.services-grid .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(13,33,55,0.12);
}
.featured-project {
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured-project:hover { transform: translateY(-6px); }
.featured-project img { transition: transform 0.6s ease; }
.featured-project:hover img { transform: scale(1.06); }
.mission-banner__text.visible {
  animation: missionTextReveal 1.2s ease forwards;
}
@keyframes missionTextReveal {
  from { opacity: 0; transform: translateY(24px); letter-spacing: 4px; }
  to { opacity: 1; transform: translateY(0); letter-spacing: 1px; }
}
.bento-item { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.bento-item:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); }

/* ===== Article & editorial layouts ===== */
.page-article { margin-bottom: 48px; }
.article-lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 28px;
  max-width: 780px;
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}
.insight-article { max-width: 920px; }
.insight-prose { max-width: 820px; }
.insight-prose p { color: var(--gray-text); margin-bottom: 16px; line-height: 1.8; font-size: 15px; }
.project-prose { max-width: 860px; }
.project-prose p { font-size: 15px; line-height: 1.8; }

.key-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 36px;
  padding: 0;
}
.key-points li {
  background: #f7f9fa;
  border-top: 3px solid var(--accent);
  padding: 18px 20px;
}
.key-point__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  margin-bottom: 6px;
}
.key-point__desc {
  display: block;
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
}

.pull-quote {
  margin: 40px 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: 4px;
  position: relative;
}
.pull-quote p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
  font-style: normal;
}

.content-figure {
  margin: 36px 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.content-figure img { width: 100%; height: 360px; object-fit: cover; display: block; }
.content-figure figcaption {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--gray-text);
  background: #f7f9fa;
  border-left: 4px solid var(--accent);
}

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 48px 0;
  padding: 40px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.editorial-split--reverse .editorial-split__text { order: 2; }
.editorial-split--reverse .editorial-split__media { order: 1; }
.editorial-split h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.editorial-split p { color: var(--gray-text); margin-bottom: 12px; line-height: 1.75; }
.editorial-split__media img { width: 100%; height: 320px; object-fit: cover; border-radius: 4px; }

.content-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin: 48px 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.content-banner__media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.content-banner__text {
  background: var(--navy);
  color: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-banner__text h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.content-banner__text p { opacity: 0.9; line-height: 1.7; margin-bottom: 12px; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0 40px;
  font-size: 14px;
}
.spec-table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.spec-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-light);
  color: var(--gray-text);
  vertical-align: top;
}
.spec-table tr:nth-child(even) td { background: #f7f9fa; }

.article-footer {
  margin-top: 40px;
  padding: 24px 28px;
  background: #f7f9fa;
  border-left: 4px solid var(--accent);
}
.article-footer p { color: var(--gray-text); margin-bottom: 10px; font-size: 14px; }
.article-back { margin-top: 40px; }

.contact-visual { margin-bottom: 32px; border-radius: 4px; overflow: hidden; }
.contact-visual img { width: 100%; height: 220px; object-fit: cover; display: block; }

.project-case-study__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: #f7f9fa;
  border-left: 4px solid var(--accent);
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--gray-text);
}
.project-case-study__meta strong { color: var(--navy); margin-right: 8px; }
.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.project-gallery .content-figure { margin: 0; }
.project-gallery .content-figure img { height: 280px; }
.project-cta { margin-top: 40px; }

.markets-grid--wide { grid-template-columns: repeat(5, 1fr); }
.markets-grid--wide .market-card { height: 160px; }

.standards-banner h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.95;
}

.legal-content {
  max-width: 780px;
  line-height: 1.75;
}
.legal-content > p:first-of-type {
  font-size: 13px;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 36px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-light);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 20px; }
.legal-content p { color: var(--gray-text); margin-bottom: 14px; font-size: 15px; }

/* ===== FAQ accordion ===== */
.faq-section {
  margin: 48px 0 0;
  max-width: 920px;
}
.faq-section__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(0, 86, 179, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.08);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  line-height: 1.45;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f4f8;
  color: var(--navy);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item[open] .faq-item__q::after {
  content: "−";
  background: var(--accent);
  color: var(--white);
}
.faq-item__a {
  padding: 0 22px 20px;
  border-top: 1px solid #eef1f4;
}
.faq-item__a p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-text);
}
.home-faq-section {
  padding: 72px 0 64px;
  background: #f7f9fa;
}
.home-faq-section .faq-section {
  margin: 0 auto;
}

/* Desktop-only: dropdowns always enabled */
@media (max-width: 1279px) {
  body { min-width: 1280px; }
}
