

:root {

  --font-display: 'Libre Baskerville', 'Georgia', serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  --brand-blue: #2a5f8f;
  --brand-blue-muted: #3a6f9f;
  --brand-blue-dark: #214c74;
  --brand-blue-soft: rgba(42,95,143,0.08);
  --brand-blue-ring: rgba(42,95,143,0.12);

  --charcoal: #1a1e23;
  --charcoal-soft: #2d3036;
  --accent-primary: var(--brand-blue);
  --accent-primary-hover: var(--brand-blue-dark);
  --accent-on-dark: #78a6d2;
  --text: #2d3036;
  --text-secondary: #5d6371;
  --text-tertiary: #5f636c;
  --surface: #faf9f7;
  --surface-warm: #f2f0ec;
  --surface-white: #fff;
  --border: #e5e2dc;
  --border-light: #edeae5;
  --white: #fff;
  --text-on-dark: var(--white);
  --text-on-dark-muted: rgba(255,255,255,0.7);

  --radius-xs: 1px;
  --radius-sm: 2px;
  --radius-md: 3px;
  --radius-lg: 4px;
  --radius-pill: 999px;
  --shadow-menu: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-section: 0 -28px 70px rgba(15,19,24,0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 0.2s;
  --duration-base: 0.3s;
  --duration-slow: 0.42s;
  --header-bg-scrolled: rgba(250,249,247,0.95);
  --menu-bg: rgba(250,249,247,0.98);

  --page-max: 1280px;
  --page-pad: 72px;
  --section-gap: 112px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: clip;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }

:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
  border-radius: 2px;
}
.project-lightbox :focus-visible {
  outline-color: rgba(255, 255, 255, 0.85);
}
.skip-link {
  position: absolute; left: 8px; top: -80px; z-index: 200;
  background: var(--accent-primary); color: var(--white);
  padding: 10px 18px; border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  transition: top var(--duration-base);
}
.skip-link:focus { top: 8px; }
main:focus { outline: none; }

::selection { background: var(--brand-blue); color: var(--white); }
img { display: block; max-width: 100%; }

.about-img-wrap,
.team-role-photo,
.pf-img,
.vr-embed-preview img {
  outline: 1px solid oklch(0 0 0 / 0.1);
  outline-offset: -1px;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-pad); }
.scroll-anchor {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  scroll-margin-top: 84px;
}

.t-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-wrap: balance;
}
.t-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.t-body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--text-secondary); text-wrap: pretty; }

.about-text .t-label,
.services-intro .t-label,
.projects-header .t-label,
.vr-tours .t-label,
.team-header .t-label,
.testimonials-header .t-label,
.contact-info .t-label {
  color: var(--accent-primary);
  display: block;
}
.hero-content .t-label,
.trust .t-label {
  color: var(--accent-on-dark);
  display: block;
}
.hero-content .t-label { margin-bottom: 24px; }
.about-text .t-label,
.trust .t-label,
.contact-info .t-label { margin-bottom: 20px; }
.services-intro .t-label,
.projects-header .t-label,
.vr-tours .t-label,
.team-header .t-label,
.testimonials-header .t-label { margin-bottom: 16px; }

.accent-mark {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent-primary);
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  margin-top: 2px;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;

  transition: border-color 0.34s ease, background 0.34s ease;
}
.site-header:not(.scrolled) .nav-links > li > a,
.site-header:not(.scrolled) .dropdown-trigger { color: rgba(255,255,255,0.78); }
.site-header:not(.scrolled) .nav-links > li > a:hover,
.site-header:not(.scrolled) .dropdown-trigger:hover { color: var(--white); }
.site-header:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.site-header:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,0.18); }
.site-header:not(.scrolled) .mobile-toggle span { background: var(--white); }
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--page-max); margin: 0 auto; padding: 20px var(--page-pad);
  transition: padding var(--duration-base);
}
.site-header.scrolled .header-inner { padding-top: 14px; padding-bottom: 14px; }

.site-logo {
  display: flex;
  align-items: center;
  width: 108px;
  height: 32px;
}
.site-logo-mark {
  display: block;
  width: auto;
  height: 30px;
}
.site-logo-mark-dark { display: none; }
.site-header.scrolled .site-logo-mark-light,
.site-header.menu-open .site-logo-mark-light { display: none; }
.site-header.scrolled .site-logo-mark-dark,
.site-header.menu-open .site-logo-mark-dark { display: block; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--text-secondary); transition: color var(--duration-base);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--charcoal); }

.dropdown { position: relative; }
.dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; font-family: var(--font-body);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  letter-spacing: 0.02em; cursor: pointer; transition: color var(--duration-base);
  padding: 0;
  text-decoration: none;
}
.dropdown-trigger:hover { color: var(--charcoal); }
.dropdown-arrow {
  display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px; transition: transform var(--duration-fast);
}
.dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px 0; min-width: 260px;
  box-shadow: var(--shadow-menu);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--duration-fast), transform var(--duration-fast), visibility 0s linear var(--duration-fast);
  list-style: none;
}
.dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  transition: opacity var(--duration-fast), transform var(--duration-fast), visibility 0s;
}
.dropdown-menu a {
  display: block; padding: 10px 24px;
  font-size: 14px; color: var(--text-secondary);
  transition: color var(--duration-fast), background var(--duration-fast), padding-left var(--duration-fast);
}
.site-header:not(.scrolled) .dropdown-menu a {
  color: var(--text-secondary);
}
.site-header:not(.scrolled) .dropdown-menu a:hover {
  color: var(--charcoal);
}
.dropdown-menu a:hover {
  color: var(--charcoal); background: var(--surface);
  padding-left: 28px;
}

.nav-cta {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--surface); background: var(--charcoal);
  padding: 10px 28px; border-radius: var(--radius-md); border: none;
  transition: background var(--duration-base); letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--charcoal-soft); }

.mobile-toggle {
  display: none; background: none; border: none;
  width: 28px; height: 20px; position: relative; cursor: pointer;
  z-index: 130;
}
.mobile-toggle::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
}
.mobile-toggle span {
  display: block; width: 100%; height: 2px; background: var(--charcoal);
  position: absolute; left: 0; border-radius: var(--radius-pill);
  transform-origin: center;
  transition: top 0.28s ease, transform 0.28s ease, opacity 0.18s ease, background 0.28s ease;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }
.mobile-toggle.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
.site-header.menu-open {
  z-index: 120;
  background: rgba(250,249,247,0.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition-duration: 0.34s;
}
.site-header.menu-open .mobile-toggle span { background: var(--charcoal); }

.mobile-menu {
  display: flex; position: fixed;
  top: var(--mobile-menu-top, 73px); left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: var(--menu-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: stretch; justify-content: flex-start;
  gap: 0; padding: 0 var(--page-pad) 36px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.34s ease, transform 0.34s ease, visibility 0s linear 0.34s;
}
.mobile-menu.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.34s ease, transform 0.34s ease, visibility 0s;
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu.open { display: none; }
}
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(24px, 6.2vw, 34px);
  line-height: 1.05; color: var(--charcoal);
}
.mobile-menu > a,
.mobile-menu .mobile-dropdown {
  width: 100%;
  max-width: 560px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.mobile-menu > a,
.mobile-menu > .mobile-dropdown {
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.mobile-menu > a:last-child {
  border-bottom: 1px solid var(--border);
}
.mobile-menu > a {
  display: block;
  padding: 15px 0;
}
.mobile-menu.open > a,
.mobile-menu.open .mobile-dropdown {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu .sub-link {
  font-family: var(--font-body); font-size: 12px; line-height: 1.25;
  color: var(--text-secondary); letter-spacing: 0.02em;
}
.mobile-menu .sub-link-all {
  color: var(--charcoal);
  font-weight: 700;
}
.mobile-menu .sub-link-all::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: var(--border);
}
.mobile-close {
  display: none;
}
.mobile-dropdown {
  display: block;
  padding: 15px 0;
}
.mobile-dropdown-toggle {
  font-family: var(--font-display); font-size: clamp(24px, 6.2vw, 34px);
  line-height: 1.05; color: var(--charcoal);
  background: none; border: none; cursor: pointer; display: flex;
  align-items: center; justify-content: space-between; gap: 16px; padding: 0;
  text-align: left; width: 100%;
}
.mobile-dropdown-arrow {
  font-family: var(--font-body); font-size: 16px; font-weight: 400;
  color: var(--text-tertiary);
  display: inline-block; line-height: 1;
  min-width: 18px; text-align: center;
}
.mobile-dropdown-items {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 8px; max-height: 0; overflow: hidden; opacity: 0;
  padding-top: 0;

  visibility: hidden;
  transition: max-height var(--duration-slow) var(--ease-out),
              opacity var(--duration-base),
              padding-top var(--duration-base),
              visibility 0s linear var(--duration-slow);
}
.mobile-dropdown.open .mobile-dropdown-items {
  max-height: 260px;
  opacity: 1;
  padding-top: 12px;
  visibility: visible;
  transition: max-height var(--duration-slow) var(--ease-out),
              opacity var(--duration-base),
              padding-top var(--duration-base),
              visibility 0s;
}

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  top: -16%;
  left: 0;
  width: 100%;
  height: 132%;
  object-fit: cover; object-position: center 25%;
  opacity: 0.45; filter: contrast(1.05) saturate(0.9);
  background: var(--charcoal);
  will-change: transform;
  transform: translate3d(0, var(--hero-bg-y, 0px), 0) scale(1.08);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(26,30,35,0.3) 0%,
    rgba(26,30,35,0.15) 40%,
    rgba(26,30,35,0.8) 100%
  );
}

.hero-loop-fade {
  position: absolute; inset: 0;
  background: var(--charcoal);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.45s ease;
}
.hero-loop-fade.is-fading { opacity: 1; }
.hero-video-toggle {
  position: absolute; z-index: 3;
  right: var(--page-pad); bottom: 32px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  background: rgba(26,30,35,0.45);
  color: var(--white);
  cursor: pointer;
  transition: background var(--duration-base), border-color var(--duration-base);
}
.hero-video-toggle[hidden] { display: none; }
.hero-video-toggle:hover { background: rgba(26,30,35,0.7); border-color: rgba(255,255,255,0.6); }
.hero-video-toggle:active { transform: scale(0.96); }
.hero-video-toggle .hvt-icon { fill: currentColor; display: block; }
.hero-video-toggle .hvt-play { display: none; }
.hero-video-toggle.is-paused .hvt-pause { display: none; }
.hero-video-toggle.is-paused .hvt-play { display: block; }
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--page-max); margin: 0 auto;
  padding: 0 var(--page-pad) 100px; width: 100%;
  opacity: var(--hero-content-opacity, 1);
  transform: translate3d(0, var(--hero-content-y, 0px), 0);
  will-change: transform, opacity;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px);
  font-weight: 400; line-height: 1.12; color: var(--white);
  letter-spacing: -0.02em;
  max-width: 680px; margin-bottom: 28px;
}
.hero-sub {
  font-family: var(--font-body); font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.6); max-width: 520px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  background: var(--accent-primary); color: var(--white); padding: 16px 36px;
  border: none; border-radius: var(--radius-md);
  transition: background var(--duration-base), transform var(--duration-fast) var(--ease-out);
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--accent-primary-hover); }
.btn-primary:active { transform: scale(0.96); }
.btn-ghost {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 16px 36px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  transition: background var(--duration-base), border-color var(--duration-base), color var(--duration-base), transform var(--duration-fast) var(--ease-out);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }
.btn-ghost:active { transform: scale(0.96); }

@media (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
  .intro-stack {
    position: relative;
    z-index: 0;
    background: var(--charcoal);
  }

  .hero {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 100vh;
  }

  .about {
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: 100vh;
    min-height: 100svh;
    box-shadow: var(--shadow-section);
  }

  .services {
    position: relative;
    z-index: 3;
    box-shadow: var(--shadow-section);
  }

  .projects,
  .vr-tours,
  .team,
  .trust,
  .contact,
  .site-footer {
    position: relative;
    z-index: 1;
  }
}

.about { padding: var(--section-gap) 0; background: var(--surface-white); }
.about-grid {
  display: grid; grid-template-columns: 5fr 6fr; gap: 96px;
  align-items: start;
}
.about-img-wrap {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius-md);
  overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap--brand { background: var(--charcoal); }
.about-img-wrap--brand img {
  object-position: 46% center;
  transform: scale(1.02);
}
.about-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 28px 24px;
  background: linear-gradient(transparent, rgba(26,30,35,0.5));
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-on-dark-muted);
}
.about-text h2 { font-size: 36px; margin-bottom: 28px; color: var(--charcoal); }
.about-text p { margin-bottom: 20px; }
.about-capabilities {
  margin-top: 40px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.about-cap-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0; border-bottom: 1px solid var(--border-light);
  font-size: 14px; font-weight: 500; color: var(--charcoal);
}
.about-cap-item:nth-child(odd) { padding-right: 20px; border-right: 1px solid var(--border-light); }
.about-cap-item:nth-child(even) { padding-left: 24px; }

.services { padding: var(--section-gap) 0; background: var(--surface); border-top: 1px solid var(--border); }

.services-layout {
  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.services-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.services-intro h2 { font-size: 36px; color: var(--charcoal); margin-bottom: 20px; }
.services-intro p { margin-bottom: 20px; }
.services-intro-path {
  display: flex; flex-wrap: nowrap; gap: 4px; margin: 28px 0 36px;
  align-items: center;
  min-width: 0;
}
.services-path-step {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--charcoal);
  background: var(--surface-white); border: 1px solid var(--border);
  padding: 5px 10px; border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}
.services-path-arrow {
  font-size: 10px; color: var(--text-tertiary); user-select: none;
  flex-shrink: 0;
}
.services-intro-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; background: var(--accent-primary);
  color: var(--white); padding: 14px 32px; border-radius: var(--radius-md);
  border: none; cursor: pointer; transition: background var(--duration-base);
  letter-spacing: 0.02em; text-decoration: none;
}
.services-intro-cta:hover { background: var(--accent-primary-hover); }

.services-list { border-top: 1px solid var(--border); }
.service-row {
  display: grid; grid-template-columns: 48px 1fr; gap: 24px;
  padding: 28px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition:
    background var(--duration-base),
    box-shadow var(--duration-base),
    opacity var(--duration-base),
    padding var(--duration-base),
    transform var(--duration-base);
  cursor: default;
  scroll-margin-top: 104px;
}
.service-row:hover { background: rgba(42,95,143,0.045); }
.service-row.is-focused {
  background: var(--brand-blue-soft);
  box-shadow: inset 0 0 0 1px rgba(42,95,143,0.28);
}
.services-list.has-focus .service-row:not(.is-focused) {
  opacity: 0.68;
}
.services-list.has-focus .service-row.is-focused {
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--surface-white);
  box-shadow:
    inset 0 0 0 1px rgba(42,95,143,0.3),
    0 14px 34px rgba(15,19,24,0.06);
  transform: none;
}
.service-num {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: var(--text-tertiary); padding-top: 4px;
}
.service-row:hover .service-num,
.service-row.is-focused .service-num { color: var(--accent-primary); }
.service-title {
  font-family: var(--font-display); font-size: 20px; color: var(--charcoal);
  transition: color var(--duration-base); margin-bottom: 6px;
}
.service-row:hover .service-title { color: var(--charcoal); }
.service-desc { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin-bottom: 6px; }
.service-detail {
  font-family: var(--font-display);
  font-size: 12px; color: var(--text-tertiary); font-style: italic;
}

.projects { padding: var(--section-gap) 0; background: var(--surface-white); }
.projects-header {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
}
.projects-header h2 { font-size: 36px; color: var(--charcoal); }
.projects-intro {
  max-width: 560px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.project-browser { display: grid; gap: 28px; }


.projects-fallback { display: block; }
html.js-gallery-ready .projects-fallback { display: none; }
html:not(.js-gallery-ready):not(.js-gallery-initializing) .project-browser { display: none; }
html.js-gallery-initializing .project-browser { visibility: hidden; }

.projects-fallback-group + .projects-fallback-group { margin-top: 44px; }
.projects-fallback-heading {
  font-family: var(--font-display);
  font-size: 24px; color: var(--charcoal);
  margin: 0 0 20px;
}
.projects-fallback-note {
  margin: 0 0 24px; color: var(--text-secondary);
}
.projects-fallback-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.pf-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pf-img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  display: block; background: var(--surface);
}
.pf-card video.pf-img { object-fit: contain; background: var(--charcoal); }
.pf-body { padding: 18px 20px 22px; }
.pf-type {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-primary); font-weight: 600;
}
.pf-title {
  font-family: var(--font-display);
  margin: 6px 0 10px; font-size: 19px; color: var(--charcoal);
}
.pf-desc {
  margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-secondary);
}

.project-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.project-tab {
  border: 1px solid var(--border);
  background: var(--surface-white);
  color: var(--text-secondary);
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--duration-base),
    border-color var(--duration-base),
    color var(--duration-base);
}

.project-tab-count {
  color: var(--text-tertiary);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.project-tab:hover,
.project-tab.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.project-tab:hover .project-tab-count,
.project-tab.is-active .project-tab-count { color: rgba(255,255,255,0.62); }

.project-browser-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.project-showcase {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.project-showcase-frame {
  order: 2;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  overflow: hidden;
  background: var(--charcoal);
}
.project-showcase-media.swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.project-showcase-media .swiper-slide {
  background: var(--charcoal);
  width: 100%;
  height: 100%;
}
.project-showcase-media .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--charcoal);
}

.project-nav-btn[hidden],
.project-image-count[hidden],
.project-thumbs-wrap[hidden],
.project-media-open[hidden] { display: none; }


.project-media-open {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}
.project-media-open:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: -6px;
  box-shadow: inset 0 0 0 6px rgba(17,23,30,0.55);
}

.project-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: 50%;
  background: rgba(17,23,30,0.36);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--duration-base), border-color var(--duration-base);
}
.project-nav-btn svg,
.project-lightbox-nav svg { display: block; }

.project-nav-btn:hover {
  background: rgba(17,23,30,0.72);
  border-color: rgba(255,255,255,0.72);
}

.project-nav-prev { left: 18px; }
.project-nav-next { right: 18px; }

.project-image-count {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(17,23,30,0.66);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
}

.project-showcase-copy {
  order: 1;
  padding: 32px 36px 28px;
}

.project-category-kicker {
  color: var(--accent-primary);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.project-showcase-title {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.project-showcase-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 62ch;
}

.project-index-panel {
  align-self: start;
  position: sticky;
  top: 100px;

  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-white);
  overflow: hidden;
}

.project-index-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.project-index-eyebrow {
  display: block;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.project-index-count {
  color: var(--text-tertiary);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-index {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.project-index-item {
  width: 100%;
  padding: 16px;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  display: grid;
  grid-template-columns: 72px 1fr 42px;
  gap: 16px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: background var(--duration-base);
}

.project-index-item:hover,
.project-index-item.is-active { background: var(--brand-blue-soft); }

.project-index-item.is-active .project-index-thumb { opacity: 1; }

.project-index-thumb {
  width: 72px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  object-fit: cover;
  opacity: 0.72;
  transition: opacity var(--duration-base);
}

.project-index-title {
  display: block;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.project-index-meta {
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-index-arrow {
  color: var(--text-tertiary);
  font-size: 20px;
  justify-self: end;
}


.project-thumbs-wrap {
  order: 3;
  padding: 18px 36px 30px;
  border-top: 1px solid var(--border);
}
.project-thumbs {
  overflow: hidden;
}

.project-thumbs .swiper-slide {
  width: 104px;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--duration-base), box-shadow var(--duration-base);
}
.project-thumbs .swiper-slide-thumb-active {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px var(--brand-blue-ring);
}
.project-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-thumb-button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: block;
  cursor: pointer;
}

.vr-tours {
  padding: var(--section-gap) 0;
  background: var(--surface-white);
  border-top: 1px solid var(--border);
}
.vr-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: center;
}
.vr-tours h2 { font-size: 32px; color: var(--charcoal); margin-bottom: 20px; }
.vr-text { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 28px; }
.vr-benefits {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;
}
.vr-benefit {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-secondary);
}
.vr-benefit .accent-mark { width: 5px; height: 5px; }
.vr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; background: var(--charcoal);
  color: var(--white); padding: 14px 32px; border-radius: var(--radius-md);
  border: none; transition: background var(--duration-base); letter-spacing: 0.02em;
  text-decoration: none;
}
.vr-cta:hover { background: var(--charcoal-soft); }

.vr-embed-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  aspect-ratio: 16/9;
}
.vr-embed-preview {
  position: absolute; inset: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s;

  padding: 0; border: 0; background: none; color: inherit;
  font: inherit; text-align: inherit; width: 100%;
}
.vr-embed-preview img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
}
.vr-embed-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.vr-embed-play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  cursor: pointer; transition: transform var(--duration-base), box-shadow var(--duration-base);
}
.vr-embed-preview:hover .vr-embed-play-btn {
  transform: translate(0, 0) scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.vr-play-tri {
  width: 0; height: 0;
  border-top: 10px solid transparent; border-bottom: 10px solid transparent;
  border-left: 16px solid var(--charcoal); margin-left: 3px;
}
.vr-embed-play-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  background: rgba(0,0,0,0.4); padding: 4px 12px; border-radius: var(--radius-sm);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.vr-embed-iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.vr-embed-wrap.loaded .vr-embed-preview { opacity: 0; pointer-events: none; visibility: hidden; }

.team { padding: var(--section-gap) 0; background: var(--surface); border-top: 1px solid var(--border); }
.team-header { margin-bottom: 64px; max-width: 560px; }
.team-header h2 { font-size: 36px; color: var(--charcoal); margin-bottom: 16px; }
.team-header p { color: var(--text-secondary); }

.team-roles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 260px)); gap: 32px;
}
.team-role {
  transition: transform var(--duration-base);
}
.team-role:hover { transform: translateY(-4px); }
.team-role-photo {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  border-radius: var(--radius-md); margin-bottom: 20px;
  background: var(--surface-warm);
}
.team-role-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.team-role:hover .team-role-photo img { transform: scale(1.03); }

.team-role-name {
  font-family: var(--font-display); font-size: 18px; color: var(--charcoal);
  margin-bottom: 4px;
}
.team-role-title {
  font-size: 13px; font-weight: 600; color: var(--accent-primary);
  letter-spacing: 0.04em; margin-bottom: 12px;
}
.team-role-bio {
  font-size: 13px; line-height: 1.6; color: var(--text-secondary);
}

.trust {
  padding: var(--section-gap) 0;
  background: var(--charcoal); color: var(--white);
  position: relative;
}
.trust-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.trust h2 { font-size: 36px; color: var(--white); margin-bottom: 24px; }
.trust-text { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.trust-commitment {
  padding: 40px 44px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
}
.trust-commitment p {
  font-family: var(--font-display); font-size: 20px; line-height: 1.6;
  color: rgba(255,255,255,0.85); font-style: italic;
}
.trust-commitment cite {
  display: block; margin-top: 20px; font-style: normal;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--accent-on-dark); letter-spacing: 0.06em; text-transform: uppercase;
}

.testimonials {
  padding: var(--section-gap) 0;
  background: var(--surface-white);
  border-top: 1px solid var(--border);
}
.testimonials-shell {
  border: 1px solid var(--border);
  background: var(--surface);
}
.testimonials-header {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  padding: 56px 64px;
  border-bottom: 1px solid var(--border);
  align-items: end;
}
.testimonials-header h2 {
  max-width: 700px;
  font-size: 34px;
  color: var(--charcoal);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.testimonial-card {
  min-height: 240px;
  padding: 56px 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.testimonial-quote {
  max-width: 56rem;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.25;
  color: var(--charcoal);
}
.testimonial-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
}

.contact {
  padding: var(--section-gap) 0;
  background: var(--surface-white);
  border-top: 1px solid var(--border);
}
.contact-grid {
  max-width: 720px;
}
.contact-info { padding-top: 8px; }
.contact-info h2 { font-size: 36px; color: var(--charcoal); margin-bottom: 24px; }
.contact-info > p { margin-bottom: 20px; }
.contact-details {
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.contact-detail-row {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-detail-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-tertiary);
  min-width: 56px; padding-top: 3px;
}
.contact-detail-value {
  font-size: 15px; color: var(--charcoal); font-weight: 500;
}
.contact-detail-value.secondary { font-weight: 400; color: var(--text-secondary); font-size: 14px; }
.contact-reassurance {
  margin-top: 36px; padding: 24px; background: var(--surface);
  border-radius: var(--radius-md); border: 1px solid var(--border);
}
.contact-reassurance p {
  font-family: var(--font-display); font-size: 15px;
  line-height: 1.65; color: var(--charcoal); font-style: italic;
}

.project-showcase-media .swiper-slide { cursor: zoom-in; }
.project-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 11, 15, 0.96);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.32s ease, visibility 0s linear 0.32s;
  display: flex; flex-direction: column;
  padding: 64px 64px 24px;
  gap: 16px;
}
.project-lightbox.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.32s ease, visibility 0s;
}
.project-lightbox-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex; align-items: center; justify-content: center;
}
.project-lightbox-swiper {
  width: 100%; height: 100%; max-width: 1600px;
}
.project-lightbox-swiper .swiper-slide {
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.project-lightbox-swiper .swiper-slide img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.project-lightbox-thumbs {
  flex: 0 0 auto;
  width: 100%; max-width: 1600px;
  margin: 0 auto;
  height: 88px;
  overflow: hidden;
}
.project-lightbox-thumbs .swiper-slide {
  width: 116px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.project-lightbox-thumbs .swiper-slide:hover { opacity: 0.85; }
.project-lightbox-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}
.project-lightbox-thumbs .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.project-lightbox-close,
.project-lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  font-family: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}
.project-lightbox-close:hover,
.project-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.48);
}
.project-lightbox-close {
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 24px; line-height: 1;
}
.project-lightbox-nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
}
.project-lightbox-prev { left: 20px; }
.project-lightbox-next { right: 20px; }
.project-lightbox-counter {
  position: absolute;
  top: 28px; left: 28px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 640px) {
  .project-lightbox { padding: 16px 16px 12px; gap: 10px; }
  .project-lightbox-close {
    top: 12px; right: 12px;
    width: 38px; height: 38px;
    font-size: 22px;
  }
  .project-lightbox-counter { top: 18px; left: 18px; font-size: 10px; }
  .project-lightbox-nav {
    width: 40px; height: 40px;
  }
  .project-lightbox-nav svg { width: 20px; height: 20px; }
  .project-lightbox-prev { left: 8px; }
  .project-lightbox-next { right: 8px; }
  .project-lightbox-thumbs { height: 64px; }
  .project-lightbox-thumbs .swiper-slide { width: 84px; }
}

@media (max-width: 1024px) {
  .contact-grid { max-width: none; }
}

.site-footer { background: #0f1318; }

.footer-grid {
  max-width: var(--page-max); margin: 0 auto;
  padding: 56px var(--page-pad) 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 0.8fr 1fr;
  gap: 48px;
}
.footer-brand { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.65; color: var(--text-on-dark-muted); margin-bottom: 24px; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer-contact-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-on-dark-muted); }
.footer-contact-row strong { color: rgba(255,255,255,0.65); font-weight: 500; }
.footer-social { display: flex; gap: 8px; }
.footer-social-icon {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.72);
  transition: border-color var(--duration-base), color var(--duration-base);
}
.footer-social-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}
.footer-social-icon:hover { border-color: var(--accent-on-dark); color: var(--accent-on-dark); }

.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-on-dark); margin-bottom: 20px;
}
.footer-link {
  display: block; font-size: 14px; color: var(--text-on-dark-muted);
  margin-bottom: 10px; transition: color var(--duration-base);
}
.footer-link:hover { color: rgba(255,255,255,0.8); }
.footer-note {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  margin-bottom: 20px;
}
.footer-link-accent {
  color: var(--accent-on-dark);
  font-weight: 600;
}
.footer-legal {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-link-small { font-size: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 20px var(--page-pad);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--text-on-dark-muted);
}

@media (max-width: 1024px) {
  :root { --page-pad: 40px; }
  .nav-links, .nav-cta-wrap { display: none; }
  .mobile-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-intro { position: static; }
  .service-row { grid-template-columns: 1fr; gap: 0; margin-inline: 0; }
  .service-desc { grid-column: auto; padding-left: 0; font-size: 13px; line-height: 1.55; margin-top: 4px; }
  .projects-header { grid-template-columns: 1fr; gap: 18px; }
  .project-browser-shell { grid-template-columns: 1fr; }
  .project-index-panel { align-self: stretch; }
  .project-index { max-height: 360px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .vr-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .testimonials-header { grid-template-columns: 1fr; gap: 18px; padding: 44px 40px; }
  .testimonial-card { min-height: auto; padding: 34px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 20px;
    --section-gap: 56px;
  }

  .header-inner { padding: 14px var(--page-pad); }
  .site-header.scrolled .header-inner { padding-top: 12px; padding-bottom: 12px; }
  .site-logo { width: 96px; height: 30px; }
  .site-logo-mark { height: 28px; }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    align-items: flex-end;
  }
  .hero-bg {
    top: 0;
    height: 100%;
    will-change: auto;
    transform: none;
  }
  .hero-content {
    padding: 0 var(--page-pad) 40px;
    opacity: 1;
    transform: none;
    will-change: auto;
  }
  .hero h1 { font-size: 28px; line-height: 1.18; margin-bottom: 18px; }
  .hero-content .t-label { font-size: 10px; letter-spacing: 0.12em; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 16px 24px; font-size: 14px; }
  .hero-video-toggle { top: 76px; bottom: auto; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap { aspect-ratio: 4/3; }
  .about-text h2 { font-size: 26px; margin-bottom: 20px; }
  .about-text .t-label { margin-bottom: 14px; }
  .about-text p { font-size: 15px; margin-bottom: 16px; }
  .about-capabilities { grid-template-columns: 1fr 1fr; margin-top: 28px; }
  .about-cap-item { padding: 10px 0; font-size: 12px; line-height: 1.45; align-items: start; }
  .about-cap-item:nth-child(odd) { padding-right: 12px; }
  .about-cap-item:nth-child(even) { padding-left: 14px; }

  .services-layout { grid-template-columns: 1fr; gap: 32px; }
  .services-intro { position: static; }
  .services-intro h2 { font-size: 28px; }
  .services-intro p { font-size: 14px; }

  .services-intro-path {
    gap: 6px;
    margin: 20px 0 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .services-path-step {
    font-size: 10px;
    padding: 5px 9px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .services-path-arrow { font-size: 10px; }
  .services-intro-cta { width: 100%; text-align: center; justify-content: center; }
  .service-row {
    grid-template-columns: 1fr; gap: 0;
    margin-inline: 0;
    padding: 16px 0;
    position: relative;
    z-index: 0;
  }

  .service-row.is-focused {
    background: transparent;
    box-shadow: none;
  }
  .service-row.is-focused::before {
    content: "";
    position: absolute;
    inset: -8px -12px;
    z-index: -1;
    border: 1px solid rgba(42,95,143,0.24);
    border-radius: var(--radius-sm);
    background: var(--surface-white);
    box-shadow: 0 12px 28px rgba(15,19,24,0.05);
    pointer-events: none;
  }
  .services-list.has-focus .service-row.is-focused {
    padding: 16px 0;
    box-shadow: none;
    transform: none;
  }
  .service-num { font-size: 11px; color: var(--accent-primary); margin-bottom: 2px; }
  .service-title { font-size: 17px; margin-bottom: 4px; }
  .service-desc { font-size: 13px; line-height: 1.55; margin-bottom: 4px; }
  .service-detail { font-size: 11px; }

  .projects-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 30px; }
  .projects-header h2 { font-size: 28px; }
  .projects-intro { font-size: 14px; }
  .project-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 4px;
    padding-bottom: 0;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }
  .project-tab {
    flex: 1 1 auto;
    min-width: 0;
    min-height: auto;
    padding: 10px 2px 14px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--text-tertiary);
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.15;
    gap: 0;
    text-align: center;
    justify-content: center;
    position: relative;
  }
  .project-tab .project-tab-label {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .project-tab .project-tab-count { display: none; }
  .project-tab:hover,
  .project-tab.is-active {
    background: transparent;
    color: var(--charcoal);
    border: none;
  }
  .project-tab::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -1px;
    height: 2px;
    background: var(--charcoal);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
  }
  .project-tab.is-active::after { transform: scaleX(1); }
  .project-browser-shell { grid-template-columns: 1fr; gap: 22px; }
  .project-showcase-frame { padding-bottom: 75%; }
  .project-showcase-copy { padding: 22px 20px 24px; }
  .project-showcase-title { font-size: 28px; }
  .project-showcase-desc { font-size: 13px; line-height: 1.6; }
  .project-nav-btn { width: 36px; height: 36px; }
  .project-nav-btn svg { width: 16px; height: 16px; }
  .project-nav-prev { left: 10px; }
  .project-nav-next { right: 10px; }
  .project-image-count { left: 10px; bottom: 10px; font-size: 10px; }
  .project-index-head { padding: 18px 16px 14px; }
  .project-index-eyebrow { font-size: 20px; }
  .project-index-item { grid-template-columns: 56px 1fr 24px; gap: 12px; padding: 14px 16px; }
  .project-index-item:hover,
  .project-index-item.is-active { background: transparent; }
  .project-index-thumb { width: 56px; }
  .project-index-title { font-size: 16px; }
  .project-index-meta { font-size: 10px; }
  .project-thumbs-wrap {
    padding: 12px 20px 20px;
  }
  .project-thumbs .swiper-slide { width: 78px; }

  .vr-grid { grid-template-columns: 1fr; gap: 32px; }
  .vr-tours h2 { font-size: 24px; margin-bottom: 14px; }
  .vr-text { font-size: 14px; margin-bottom: 20px; }
  .vr-benefits { gap: 8px; margin-bottom: 24px; }
  .vr-benefit { font-size: 13px; }
  .vr-cta { width: 100%; text-align: center; justify-content: center; padding: 14px 24px; font-size: 14px; }

  .team-header { margin-bottom: 24px; }
  .team-header h2 { font-size: 28px; margin-bottom: 12px; }
  .team-header p { font-size: 14px; line-height: 1.6; }
  .team-roles {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-role {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
  }
  .team-role:last-child { border-bottom: 0; padding-bottom: 0; }
  .team-role:hover { transform: none; }
  .team-role-photo {
    margin-bottom: 22px;
  }
  .team-role-name {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .team-role-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .team-role-bio {
    font-size: 14px;
    line-height: 1.65;
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .trust-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust h2 { font-size: 26px; margin-bottom: 16px; }
  .trust-text { font-size: 14px; margin-bottom: 14px; }
  .trust-commitment { padding: 20px 16px; }
  .trust-commitment p { font-size: 16px; line-height: 1.55; }

  .testimonials-shell { margin-inline: calc(var(--page-pad) * -1); border-inline: 0; }
  .testimonials-header {
    padding: 28px var(--page-pad);
    gap: 10px;
  }
  .testimonials-header h2 {
    font-size: 24px;
    line-height: 1.2;
  }
  .testimonial-card {
    padding: 28px var(--page-pad);
    gap: 20px;
  }
  .testimonial-quote {
    font-size: 15px;
    line-height: 1.65;
  }
  .testimonial-name {
    font-size: 18px;
  }
  .testimonial-meta {
    font-size: 9px;
  }

  .contact-info h2 { font-size: 26px; margin-bottom: 16px; }
  .contact-info > p { font-size: 14px; }
  .contact-details { margin-top: 24px; padding-top: 20px; gap: 12px; }
  .contact-reassurance { margin-top: 20px; padding: 16px; }
  .contact-reassurance p { font-size: 14px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr; gap: 28px 20px;
    padding: 40px var(--page-pad) 32px;
  }
  .footer-grid > :first-child,
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-desc { max-width: none; }
  .footer-bottom-inner {
    flex-direction: column; gap: 6px;
    padding: 16px var(--page-pad); text-align: center;
  }

  .mobile-menu a,
  .mobile-dropdown-toggle { font-size: 20px; }
  .mobile-menu .sub-link { font-size: 14px; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-bg {
    --hero-bg-y: 0px !important;
    will-change: auto !important;
  }
  .hero-content {
    --hero-content-y: 0px !important;
    --hero-content-opacity: 1 !important;
    will-change: auto !important;
  }
}
