@import url("https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Oswald:wght@300;400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  background: #272727;
  color: #999999;
  transition: background var(--transition-medium), color var(--transition-medium);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 48px, var(--container-max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  height: var(--navbar-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition: height var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-medium), border-color var(--transition-medium), backdrop-filter var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(39,39,39,0.88);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255,255,255,0.08);
}

.navbar.shrink {
  height: var(--navbar-height-shrink);
  background: rgba(39,39,39,0.98);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
  border-bottom-color: rgba(255,255,255,0.10);
}

.navbar-inner {
  width: min(100% - 48px, var(--container-max));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  color: var(--text-dark);
}

.brand-mark {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.24em;
  font-weight: 400;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  margin-top: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.desktop-nav .nav-menu,
.mobile-nav .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  position: relative;
  border: 0;
  background: transparent;
  font-family: var(--font-heading);
  cursor: pointer;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--primary-color);
  transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-caret {
  width: 9px;
  height: 9px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition-fast);
}

.has-dropdown:hover .dropdown-caret,
.has-dropdown:focus-within .dropdown-caret {
  transform: rotate(225deg) translateY(-1px);
}

.dropdown {
  list-style: none;
  margin: 0;
  padding: 10px;
}

.desktop-nav .dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 220px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(30,30,30,0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.40);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.desktop-nav .has-dropdown:hover .dropdown,
.desktop-nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 11px 12px;
  border-radius: 9px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-link:hover,
.dropdown-link:focus-visible,
.dropdown-link.active {
  background: color-mix(in srgb, var(--primary-color) 22%, transparent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  display: none;
}

.hamburger {
  display: none;
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(30,30,30,0.20);
  background: rgba(255,255,255,0.92);
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

body.dark-theme .hamburger {
  border-color: rgba(255,255,255,0.18);
  background: rgba(80,80,80,0.92);
}

.hamburger.is-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

body.dark-theme .hamburger.is-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.hamburger-lines {
  width: 18px;
  height: 14px;
  position: relative;
}

.hamburger-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.80);
  border-radius: 3px;
  transition: transform var(--transition-fast), opacity var(--transition-fast), top var(--transition-fast);
}

body.dark-theme .hamburger-lines span {
  background: rgba(255,255,255,0.80);
}

.hamburger.is-active .hamburger-lines span,
body.dark-theme .hamburger.is-active .hamburger-lines span {
  background: rgba(255,255,255,0.90);
}

.hamburger-lines span:nth-child(1) {
  top: 0;
}

.hamburger-lines span:nth-child(2) {
  top: 6px;
}

.hamburger-lines span:nth-child(3) {
  top: 12px;
}

.hamburger.is-active .hamburger-lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.hamburger.is-active .hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger-lines span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 980;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.36);
  transition: opacity var(--transition-fast);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(84vw, 370px);
  height: 100dvh;
  z-index: 1001;
  background: var(--background-light);
  border-left: 1px solid var(--border-color);
  box-shadow: var(--shadow-strong);
  padding: 72px 28px 34px;
  transition: right var(--transition-medium);
  overflow-y: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--surface-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #111;
  transform: rotate(90deg);
}

.mobile-nav-close svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav .nav-item + .nav-item {
  border-top: 1px solid var(--border-color);
}

.mobile-nav .nav-link {
  width: 100%;
  justify-content: space-between;
  text-align: left;
  padding: 17px 0;
  color: var(--text-dark);
}

.mobile-nav .nav-link:hover {
  color: var(--primary-color);
}

.mobile-nav .dropdown-link {
  color: var(--text-dark);
  opacity: 0.70;
}

.mobile-nav .dropdown-link:hover {
  color: var(--primary-color);
  opacity: 1;
}

.mobile-nav .dropdown {
  max-height: 0;
  padding: 0 0 0 14px;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.mobile-nav .dropdown.open {
  max-height: 180px;
  padding: 4px 0 12px 14px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 8, 8, 0.68) 8%, rgba(20, 20, 20, 0.38) 49%, rgba(15, 15, 15, 0.54) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 820px);
  margin: 0 auto;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade 1s var(--ease-standard) forwards;
}

.hero-kicker {
  margin: 0;
  color: color-mix(in srgb, var(--primary-color) 88%, white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-title {
  margin: 18px 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.01em;
  max-width: 10.8ch;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 0;
  max-width: 62ch;
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 0.9rem 1.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: var(--primary-color);
  color: #141414;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--primary-color) 84%, white);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--text-light);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.page-hero {
  padding: clamp(120px, 16vh, 170px) 0 clamp(78px, 10vh, 104px);
  background: linear-gradient(165deg, var(--surface-color) 0%, var(--background-light) 100%);
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.3rem);
  line-height: 1.07;
}

.page-hero p {
  margin: 16px 0 0;
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 64ch;
  line-height: 1.7;
}

.content-section {
  padding: clamp(58px, 9vw, 92px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.card {
  grid-column: span 4;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  background: var(--surface-color);
  padding: 24px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: color-mix(in srgb, var(--primary-color) 40%, var(--border-color));
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 28px 0;
  color: var(--text-muted);
  font-size: 0.87rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.hide-mobile {
  display: block;
}

.hide-desktop {
  display: none;
}

@keyframes hero-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── NAVBAR PREMIUM UPGRADES ────────────────────────────── */
.navbar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(39,39,39,0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom-color: rgba(255,255,255,0.08);
}

.navbar.shrink {
  background: rgba(39,39,39,0.98);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
  border-bottom-color: rgba(255,255,255,0.18);
}

.brand-logo {
  height: 76px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transition: height var(--transition-fast);
}

.navbar.shrink .brand-logo {
  height: 62px;
}

.btn-nav-cta {
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary-color);
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.btn-nav-cta:hover,
.btn-nav-cta:focus-visible {
  background: var(--primary-color);
  color: #141414;
  transform: translateY(-1px);
}

/* ─── HERO CAROUSEL ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: #272727;
  padding: clamp(120px, 17vh, 170px) 0 clamp(80px, 10vh, 120px);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  /* Fade-in transition — JS forces incoming slide above outgoing (z-index)
     so the outgoing stays fully visible underneath during the crossfade,
     guaranteeing no blank gap between slides. */
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05); /* base scale; animation is applied inline by JS */
  will-change: transform;
}

@keyframes hero-ken-burns {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.06) 45%, rgba(0,0,0,0.48) 100%),
    linear-gradient(100deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.18) 52%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, 860px);
  margin: 0 auto;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(28px);
  animation: hero-fade 1.1s 0.3s var(--ease-standard) forwards;
  flex-shrink: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--primary-color);
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--primary-color);
}

.hero-title {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55), 0 8px 40px rgba(0,0,0,0.40);
}

.hero-subtitle {
  margin: 0;
  max-width: 38ch;
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.75;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.50);
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.82rem 1.6rem;
  border-radius: 3px;
  background: var(--primary-color);
  color: #111;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(242,193,0,0.28);
}

.btn-hero-primary:hover,
.btn-hero-primary:focus-visible {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(242,193,0,0.18);
}

.btn-hero-primary svg {
  transition: transform var(--transition-fast);
}

.btn-hero-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.81rem 1.6rem;
  border-radius: 3px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.34);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}

.btn-hero-outline:hover,
.btn-hero-outline:focus-visible {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  background: rgba(242,193,0,0.05);
}

/* Global premium button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  background: var(--primary-color);
  color: #111;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: color-mix(in srgb, var(--primary-color) 80%, white);
  transform: translateY(-2px);
}

.btn-primary svg {
  transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.14);
}

/* Carousel indicators */
.hero-indicators {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-indicator {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.28);
  transition: background var(--transition-fast), width var(--transition-fast);
  cursor: pointer;
}

.hero-indicator.active {
  background: var(--primary-color);
  width: 48px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-cue span {
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line-move 2s ease-in-out infinite;
}

@keyframes scroll-line-move {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
/* ─── PARALLAX HERO ────────────────────────────────────────────────── */
.hero--parallax {
  position: relative;
}

.hero--parallax .hero-carousel {
  will-change: transform;
}

/* Our Work follows hero flush — no card overlap */
.hero--parallax + .our-work {
  position: relative;
  z-index: 2;
}

/* ─── REVEAL LIFT (architect card entry) ────────────────────────── */
.reveal-lift {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: opacity 1.3s cubic-bezier(0.16,1,0.3,1),
              transform 1.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 1.3s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, opacity;
}

.reveal-lift.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ─── SCROLL REVEAL BASE ───────────────────────────────────────────── */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.9s var(--ease-standard), transform 0.9s var(--ease-standard);
}

.reveal-left  { transform: translateX(-48px) scale(0.97); }
.reveal-right { transform: translateX(48px) scale(0.97); }
.reveal-up    { transform: translateY(40px) scale(0.97); }

.reveal-left.in-view,
.reveal-right.in-view,
.reveal-up.in-view {
  opacity: 1;
  transform: none;
}

/* Stagger delays for work grid items */
.work-grid .work-item:nth-child(1) { transition-delay: 0.05s; }
.work-grid .work-item:nth-child(2) { transition-delay: 0.18s; }
.work-grid .work-item:nth-child(3) { transition-delay: 0.28s; }
.work-grid .work-item:nth-child(4) { transition-delay: 0.38s; }
.work-grid .work-item:nth-child(5) { transition-delay: 0.48s; }
/* ─── OUR WORK SECTION ───────────────────────────────────── */
.our-work {
  padding: clamp(80px, 10vw, 120px) 0 clamp(80px, 10vw, 120px);
  background: #272727;
  overflow: hidden;
}

.our-work .container {
  padding-bottom: clamp(40px, 5vw, 64px);
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 60px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  padding: 0;
  border-top: 2px solid var(--primary-color);
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--background-dark);
}

.work-item--featured {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.work-item--wide {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.work-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.work-item--featured .work-img-wrap {
  aspect-ratio: 16/9;
}

.work-item--wide .work-img-wrap {
  aspect-ratio: 4/3;
}

.work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
  filter: brightness(0.85);
}

.work-item:hover .work-img-wrap img {
  transform: scale(1.07);
  filter: brightness(0.95);
}

.work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  transform: translateY(6px);
  transition: transform var(--transition-fast);
}

.work-item:hover .work-info {
  transform: translateY(0);
}

.work-category {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.work-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}

.work-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ─── ARCHITECT SECTION ─────────────────────────────────────────────── */
.architect-section {
  position: relative;
  padding: clamp(50px, 7vw, 80px) 0;
  background: #272727;
  color: var(--text-light);
  overflow: hidden;
}

/* Animated gold top-edge divider line */
.architect-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 1px;
  width: min(760px, 88vw);
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.36;
  z-index: 1;
  transform: translateX(-50%) scaleX(0.01);
  transform-origin: center;
  transition: transform 1.4s var(--ease-standard);
}

.architect-section.in-view::after {
  transform: translateX(-50%) scaleX(1);
}

/* Decorative background lines */
.arch-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.arch-bg-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(10% + (var(--i) * 20%));
  width: 1px;
  background: rgba(255,255,255,0.04);
}

.arch-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242,193,0,0.08);
  pointer-events: none;
}

.arch-bg-circle--1 {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -120px;
}

.arch-bg-circle--2 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  left: -60px;
  border-color: rgba(242,193,0,0.05);
}

.architect-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

/* Left visual */
.architect-visual {
  position: relative;
}

.architect-photo-frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: visible;
}

.architect-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 380px;
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}

.architect-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 32px);
}

.architect-photo-placeholder svg {
  width: 88px;
  height: 88px;
  position: relative;
  z-index: 1;
}

.architect-photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80%;
  height: 80%;
  border-radius: var(--radius-card);
  border: 2px solid var(--primary-color);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

/* Floating badges */
.arch-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #111;
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 96px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(242,193,0,0.30);
  z-index: 3;
  transition-delay: 0.2s;
}

.arch-badge--1 {
  top: 28px;
  right: -20px;
}

.arch-badge--2 {
  bottom: 40px;
  right: -20px;
}

.arch-badge-num {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
}

.arch-badge-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.80;
}

/* Right content */
.architect-content .section-label {
  color: var(--primary-color);
}

.architect-name {
  margin: 6px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
}

.architect-divider {
  width: 52px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  margin: 12px 0;
}

.architect-bio {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  font-size: 0.875rem;
  font-weight: 300;
}

.architect-credentials {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.architect-credentials li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
}

.cred-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--primary-color);
}

.cred-icon svg {
  width: 100%;
  height: 100%;
}

/* ─── DESIGN PROCESS SECTION ───────────────────────────────────────────── */
.process-section {
  position: relative;
  padding: clamp(90px, 13vw, 140px) 0;
  background: #272727;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, color-mix(in srgb, var(--primary-color) 8%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

/* Section header */
.process-header {
  text-align: center;
  margin-bottom: clamp(54px, 8vw, 86px);
}

.process-header .section-title {
  margin-bottom: 0;
  color: var(--text-dark);
}

.process-subtitle {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Steps track */
.process-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* Animated connector line behind cards */
.process-track::before {
  content: '';
  position: absolute;
  top: 56px; /* centre of icon circle */
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: linear-gradient(90deg,
    var(--primary-color) 0%,
    color-mix(in srgb, var(--primary-color) 60%, transparent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease-standard);
  z-index: 0;
}

.process-track.in-view::before {
  transform: scaleX(1);
}

.process-step {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-standard), transform 0.7s var(--ease-standard);
}

.process-step.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* stagger each step */
.process-step:nth-child(1) { transition-delay: 0.10s; }
.process-step:nth-child(2) { transition-delay: 0.22s; }
.process-step:nth-child(3) { transition-delay: 0.34s; }
.process-step:nth-child(4) { transition-delay: 0.46s; }
.process-step:nth-child(5) { transition-delay: 0.58s; }

/* Icon ring */
.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--background-light);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  flex-shrink: 0;
}

.process-step:hover .process-icon,
.process-step--active .process-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--primary-color) 36%, transparent);
  transform: translateY(-4px) scale(1.06);
}

.process-step:hover .process-icon svg,
.process-step--active .process-icon svg {
  color: #111;
}

.process-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

/* Step number pill */
.process-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  border: 2px solid var(--surface-color);
  transition: background var(--transition-fast);
}

.process-step:hover .process-num,
.process-step--active .process-num {
  background: #fff;
  color: #111;
  border-color: var(--primary-color);
}

.process-step-title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.process-step--active .process-step-title {
  color: var(--primary-color);
}

.process-step--active .process-step-desc {
  color: var(--text-dark);
}

.process-step-desc {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 16ch;
}

/* Chevron arrows between steps (decorative) */
.process-arrow {
  flex-shrink: 0;
  width: 24px;
  margin-top: 30px; /* align with icon centre */
  color: color-mix(in srgb, var(--primary-color) 55%, transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease-standard) 0.8s, color 0.4s ease;
}

.process-track.in-view .process-arrow {
  opacity: 1;
}

.process-arrow--active {
  color: var(--primary-color);
  opacity: 1 !important;
}

.process-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
  animation: arrow-pulse 2.4s ease-in-out infinite;
}

@keyframes arrow-pulse {
  0%, 100% { transform: translateX(0); opacity: 0.55; }
  50%       { transform: translateX(4px); opacity: 1; }
}

/* ─── TITLE ACCENT ────────────────────────────────────────────── */
.title-accent {
  color: var(--primary-color);
  font-style: normal;
}

/* ─── SERVICES SECTION ────────────────────────────────────────── */
.services-section {
  position: relative;
  padding: clamp(90px, 13vw, 140px) 0;
  background: #272727;
  overflow: hidden;
}

/* Gold radial glow at section top edge */
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, color-mix(in srgb, var(--primary-color) 6%, transparent) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Animated gold divider line */
.services-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 1px;
  width: min(760px, 88vw);
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.40;
  z-index: 1;
  transform: translateX(-50%) scaleX(0.01);
  transform-origin: center;
  transition: transform 1.4s var(--ease-standard);
}

.services-section.in-view::after {
  transform: translateX(-50%) scaleX(1);
}

.services-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(52px, 7vw, 80px);
  position: relative;
  z-index: 2;
}

.services-header .section-title {
  margin-bottom: 0;
}

.services-subtitle {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.service-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #272727;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

/* Stagger reveal for service cards */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.35s; }

.service-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-standard);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

.service-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary-color) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--primary-color);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.service-card:hover .service-icon svg {
  color: #111;
}

.service-card-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.service-card-desc {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-color);
  text-decoration: none;
  transition: gap var(--transition-fast);
  margin-top: auto;
}

.service-link:hover {
  gap: 12px;
}

.service-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(3px);
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 58px;
  position: relative;
  z-index: 2;
}

/* ─── WHY CHOOSE US ───────────────────────────────────────────── */
.why-section {
  position: relative;
  padding: clamp(90px, 13vw, 140px) 0;
  background: #272727;
  overflow: hidden;
}

/* Subtle grid texture */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 64px);
  pointer-events: none;
  z-index: 0;
}

/* Gold top-edge accent line */
.why-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0.01);
  transform-origin: center;
  width: min(760px, 88vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.42;
  z-index: 1;
  transition: transform 1.4s var(--ease-standard);
}

.why-section.in-view::after {
  transform: translateX(-50%) scaleX(1);
}

.why-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(52px, 7vw, 80px);
  position: relative;
  z-index: 2;
}

.why-label {
  color: var(--primary-color) !important;
}

.why-title {
  color: var(--text-dark) !important;
  margin-bottom: 0;
}

.why-subtitle {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: #272727;
  border: 1px solid rgba(242,193,0,0.35);
  border-radius: var(--radius-card);
  padding: 32px 24px 36px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
  transition: background var(--transition-medium), border-color var(--transition-medium), transform var(--transition-medium), box-shadow var(--transition-medium);
}

.why-card:hover {
  background: #272727;
  border-color: rgba(242,193,0,0.65);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.32), 0 0 0 1px rgba(242,193,0,0.12);
}

/* Stagger reveal */
.why-grid .why-card:nth-child(1) { transition-delay: 0.05s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.15s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.25s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.35s; }

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(242,193,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition-fast);
}

.why-card:hover .why-icon {
  background: var(--primary-color);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.why-card:hover .why-icon svg {
  color: #111;
}

.why-card-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.why-card-desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.why-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: clamp(56px, 8vw, 88px);
  position: relative;
  z-index: 2;
}

.why-cta-text {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.52);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ─── VIDEO SHOWCASE SECTIONS ──────────────────────────────────────── */
.video-showcase {
  position: relative;
  padding: clamp(80px, 12vw, 130px) 0;
  background: var(--background-dark);
  overflow: hidden;
  z-index: 6;
}

/* Alternating subtle accent so the two sections feel distinct */
.video-showcase--1 {
  background: #272727;
}

.video-showcase--2 {
  background: #272727;
}

/* Decorative gold grid pattern in the background */
.video-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   rgba(242,193,0,0.03) 0px, rgba(242,193,0,0.03) 1px, transparent 1px, transparent 72px),
    repeating-linear-gradient(90deg,  rgba(242,193,0,0.03) 0px, rgba(242,193,0,0.03) 1px, transparent 1px, transparent 72px);
  pointer-events: none;
}

.video-showcase-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.video-showcase-title {
  margin-bottom: 14px;
}

.video-showcase-sub {
  max-width: 52ch;
  margin: 0 auto;
  color: rgba(255,255,255,0.52);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  font-weight: 300;
}

/* Outer wrapper — adds the gold accent line border */
.video-frame-wrap {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  border-radius: 12px;
  /* Gold shimmer border */
  padding: 2px;
  background: linear-gradient(135deg, rgba(242,193,0,0.55) 0%, rgba(242,193,0,0.08) 50%, rgba(242,193,0,0.55) 100%);
  box-shadow:
    0 0 0 1px rgba(242,193,0,0.08),
    0 32px 80px rgba(0,0,0,0.65),
    0 8px 24px rgba(0,0,0,0.45);
}

/* 16:9 responsive aspect-ratio container */
.video-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 11px;
  overflow: hidden;
  background: #000;
}

.video-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── TESTIMONIALS SECTION ─────────────────────────────────────────── */
.testi-section {
  position: relative;
  padding: clamp(90px, 13vw, 140px) 0;
  background: #272727;
  overflow: hidden;
}

/* Subtle grid texture */
.testi-section::before {
  display: none;
}

/* Gold top-edge accent line */
.testi-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0.01);
  transform-origin: center;
  width: min(760px, 88vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.42;
  z-index: 1;
  transition: transform 1.4s var(--ease-standard);
}

.testi-section.in-view::after {
  transform: translateX(-50%) scaleX(1);
}

.testi-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(52px, 7vw, 80px);
  position: relative;
  z-index: 1;
}

.testi-title {
  color: var(--text-dark) !important;
  margin-bottom: 0;
}

.testi-subtitle {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── TESTI GRID ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(20px, 3vw, 32px);
  position: relative;
  z-index: 1;
}

/* ─── TESTI CARD ─── */
.testi-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3.5vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease-standard),
    background 0.35s var(--ease-standard),
    box-shadow 0.35s var(--ease-standard),
    transform 0.35s var(--ease-standard),
    opacity 0.9s var(--ease-standard);
}

.testi-card:hover {
  border-color: rgba(242, 193, 0, 0.50);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 12px 56px rgba(0,0,0,0.28), 0 0 0 1px rgba(242,193,0,0.12);
  transform: translateY(-5px);
}

/* Large decorative opening-quote */
.testi-quote-mark {
  position: absolute;
  top: 12px;
  right: 22px;
  font-size: 7rem;
  line-height: 1;
  font-family: var(--font-heading);
  color: var(--primary-color);
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.35s var(--ease-standard);
}

.testi-card:hover .testi-quote-mark {
  opacity: 0.20;
}

/* Star rating */
.testi-stars span {
  color: var(--primary-color);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

/* Quote text */
.testi-text {
  margin: 0;
  font-size: clamp(0.88rem, 1.05vw, 0.97rem);
  line-height: 1.85;
  color: rgba(0,0,0,0.60);
  font-style: italic;
  flex: 1;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: auto;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdf9ee 0%, #f0ead0 100%);
  border: 2px solid rgba(242, 193, 0, 0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--primary-color);
  font-family: var(--font-heading);
  transition: border-color 0.35s var(--ease-standard), box-shadow 0.35s var(--ease-standard);
}

.testi-card:hover .testi-avatar {
  border-color: rgba(242, 193, 0, 0.70);
  box-shadow: 0 0 0 4px rgba(242, 193, 0, 0.10);
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testi-name {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-dark);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.testi-role {
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Stagger delays for cards */
.testi-grid .testi-card:nth-child(1) { transition-delay: 0.05s; }
.testi-grid .testi-card:nth-child(2) { transition-delay: 0.22s; }
.testi-grid .testi-card:nth-child(3) { transition-delay: 0.38s; }

/* ─── SITE FOOTER (premium) ───────────────────────────────────── */
.site-footer {
  background: #272727;
  color: rgba(255,255,255,0.95);
}

/* Gold accent top border */
.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 30%, var(--primary-color) 70%, transparent 100%);
  opacity: 0.7;
}

.footer-top {
  padding: clamp(60px, 9vw, 96px) 0 clamp(48px, 7vw, 80px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.footer-tagline {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
}

.footer-desc {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.88);
  max-width: 30ch;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease,
              background 0.22s ease,
              border-color 0.22s ease;
}

.footer-social-link svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Instagram — gradient purple→pink */
.footer-social-link[aria-label="Instagram"] {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border-color: rgba(255,255,255,0.10);
  color: #fff;
}
.footer-social-link[aria-label="Instagram"]:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(253,29,29,0.45);
}

/* Facebook — blue */
.footer-social-link[aria-label="Facebook"] {
  background: #1877f2;
  border-color: rgba(255,255,255,0.10);
  color: #fff;
}
.footer-social-link[aria-label="Facebook"]:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(24,119,242,0.50);
}

/* LinkedIn — professional blue */
.footer-social-link[aria-label="LinkedIn"] {
  background: #0a66c2;
  border-color: rgba(255,255,255,0.10);
  color: #fff;
}
.footer-social-link[aria-label="LinkedIn"]:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(10,102,194,0.50);
}

/* WhatsApp — green */
.footer-social-link[aria-label="WhatsApp"] {
  background: #25d366;
  border-color: rgba(255,255,255,0.10);
  color: #fff;
}
.footer-social-link[aria-label="WhatsApp"]:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.footer-col-title {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links li a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.footer-link-icon {
  width: 10px;
  height: 10px;
  color: var(--primary-color);
  opacity: 0;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
}

.footer-links li a:hover {
  color: rgba(255,255,255,0.90);
  gap: 10px;
}

.footer-links li a:hover .footer-link-icon {
  opacity: 1;
}

/* Contact items with icons */
.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(242,193,0,0.10);
  border: 1px solid rgba(242,193,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-top: 1px;
}

.footer-contact-icon svg {
  width: 15px;
  height: 15px;
}

.footer-contact-item span:last-child {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.68;
}

.footer-address a {
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-address a:hover {
  color: var(--primary-color);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.08) 80%, transparent 100%);
  margin: 0 clamp(24px, 4vw, 64px);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy,
.footer-credit {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.88);
}

.footer-credit-link {
  font-family: var(--font-heading);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.footer-credit-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ─── FLOATING ACTION BUTTONS ─────────────────────────────────────── */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9000;
}

.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 14px;
  height: 50px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.40);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease,
              padding 0.22s ease;
  max-width: 50px;
  white-space: nowrap;
}

.fab svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fab-label {
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, width 0.25s ease;
  pointer-events: none;
}

.fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(0,0,0,0.50);
  max-width: 180px;
  padding: 0 20px 0 14px;
}

.fab:hover .fab-label {
  opacity: 1;
  width: auto;
}

.fab--call {
  background: var(--primary-color);
  color: #111;
}

.fab--call:hover {
  box-shadow: 0 12px 36px rgba(242,193,0,0.40);
}

.fab--whatsapp {
  background: #25D366;
  color: #fff;
}

.fab--whatsapp:hover {
  box-shadow: 0 12px 36px rgba(37,211,102,0.38);
}

/* ─── SCROLL TO TOP ────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: rgba(10,10,10,0.72);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.3s var(--ease-standard),
              transform 0.3s var(--ease-standard),
              background 0.22s ease,
              box-shadow 0.22s ease;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--primary-color);
  color: #111;
  box-shadow: 0 8px 32px rgba(242,193,0,0.36);
  transform: translateY(-3px) scale(1.08);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

/* ─── HERO FLOATING ARCHITECTURAL GRAPHICS ────────────────────────── */
.hero-graphics {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Blueprint dot grid right 55% — fades left so it doesn't bleed onto text */
.hero-g-dots {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background-image: radial-gradient(circle, rgba(242,193,0,0.55) 1.4px, transparent 1.4px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.65) 0%, transparent 68%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.65) 0%, transparent 68%);
}

/* Compass rose — slow clockwise rotation */
.hero-g-compass {
  position: absolute;
  right: clamp(4%, 7vw, 11%);
  top: 50%;
  translate: 0 -50%;
  width: clamp(180px, 22vw, 290px);
  height: clamp(180px, 22vw, 290px);
  color: rgba(242,193,0,0.55);
  will-change: rotate;
  animation: compass-spin 100s linear infinite;
}

@keyframes compass-spin {
  to { rotate: 1turn; }
}

/* Floor plan wireframe — gentle vertical float */
.hero-g-plan {
  position: absolute;
  right: clamp(3%, 5vw, 7%);
  bottom: 11%;
  width: clamp(110px, 15vw, 210px);
  height: auto;
  color: rgba(255,255,255,0.32);
  animation: g-float 9s ease-in-out infinite;
}

/* Elevation ruler marks */
.hero-g-ruler {
  position: absolute;
  right: clamp(2%, 3vw, 5%);
  top: 14%;
  height: clamp(80px, 13vw, 180px);
  width: 14px;
  color: rgba(242,193,0,0.60);
  animation: g-float 11s ease-in-out infinite 2s;
}

.hero-g-ruler svg {
  width: 100%;
  height: 100%;
}

@keyframes g-float {
  0%, 100% { translate: 0 0px;  }
  50%       { translate: 0 -13px; }
}

/* Blueprint corner bracket marks */
.hero-g-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  color: rgba(242,193,0,0.60);
}

.hero-g-corner--tl {
  top: 12%;
  left: 52%;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.hero-g-corner--br {
  bottom: 11%;
  right: 4%;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  animation: g-float 13s ease-in-out infinite 1s;
}

/* ─── DARK THEME OVERRIDES — Why Choose Us ──────────────────────────── */
body.dark-theme .why-section::before {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 64px);
}
body.dark-theme .why-title { color: #fff !important; }
body.dark-theme .why-subtitle { color: rgba(255,255,255,0.48); }
body.dark-theme .why-card {
  background: #272727;
  border-color: rgba(242,193,0,0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}
body.dark-theme .why-card:hover {
  background: #272727;
  border-color: rgba(242,193,0,0.65);
  box-shadow: 0 20px 48px rgba(0,0,0,0.32), 0 0 0 1px rgba(242,193,0,0.12);
}
body.dark-theme .why-card-title { color: #fff; }
body.dark-theme .why-card-desc { color: rgba(255,255,255,0.48); }

/* ─── DARK THEME OVERRIDES — Testimonials ───────────────────────────── */
body.dark-theme .testi-section::before {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 64px);
}
body.dark-theme .testi-title { color: #fff !important; }
body.dark-theme .testi-subtitle { color: rgba(255,255,255,0.45); }
body.dark-theme .testi-card {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.08);
}
body.dark-theme .testi-card:hover {
  border-color: rgba(242, 193, 0, 0.46);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 12px 56px rgba(0,0,0,0.40), 0 0 0 1px rgba(242,193,0,0.10);
}
body.dark-theme .testi-text { color: rgba(255,255,255,0.64); }
body.dark-theme .testi-author { border-top-color: rgba(255,255,255,0.07); }
body.dark-theme .testi-avatar {
  background: linear-gradient(135deg, #7c7c7c 0%, #717171 100%);
  border-color: rgba(242,193,0,0.38);
}
body.dark-theme .testi-name { color: #fff; }
body.dark-theme .testi-role { color: rgba(255,255,255,0.38); }

/* ─── CTA SECTION ──────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: clamp(90px, 13vw, 140px) 0;
  background: #272727;
  overflow: hidden;
  text-align: center;
}

/* Radial gold glow */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 110vw);
  height: min(500px, 80vw);
  background: radial-gradient(ellipse at center, rgba(242,193,0,0.09) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Gold top-edge accent line */
.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0.01);
  transform-origin: center;
  width: min(760px, 88vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.55;
  z-index: 1;
  transition: transform 1.4s var(--ease-standard);
}

.cta-section.in-view::after {
  transform: translateX(-50%) scaleX(1);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-title {
  margin: 12px 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-desc {
  max-width: 580px;
  margin: 0 auto 40px;
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  font-size: clamp(0.93rem, 1.2vw, 1.05rem);
  color: rgba(255,255,255,0.50);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FOOTER STACKING OVERRIDE ─────────────────────────────────────── */
/* Reset old generic site-footer rules so new premium footer takes full control */
.site-footer {
  padding: 0;
  border-top: none;
  position: relative;
  z-index: 9;
}

.footer-top .container {
  display: block;
}

/* ─── ABOUT PAGE ───────────────────────────────────────────────────── */

/* Hero */
.about-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--navbar-height);
  padding-bottom: clamp(32px, 5vw, 56px);
  background: #272727;
}
.about-hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 90% at 10% 70%, rgba(242,193,0,0.13) 0%, rgba(242,193,0,0.05) 45%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(242,193,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero-content { position: relative; z-index: 1; }
.about-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
  font-size: 0.72rem; letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.46);
}
.about-breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.about-breadcrumb a:hover { color: var(--primary-color); }
.bc-sep { width: 18px; height: 1px; background: rgba(255,255,255,0.26); flex-shrink: 0; }
.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 400; color: #fff;
  line-height: 1.10; letter-spacing: -0.025em;
  margin: 0 0 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 8px 40px rgba(0,0,0,0.35);
}
.about-hero-subtitle {
  max-width: 52ch;
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  font-size: clamp(0.93rem, 1.35vw, 1.05rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.80; margin: 0 0 38px;
}
.about-hero-stats { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.about-stat {
  padding-right: clamp(24px, 3.5vw, 44px);
  margin-right: clamp(24px, 3.5vw, 44px);
  border-right: 1px solid rgba(255,255,255,0.16);
}
.about-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.about-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400; color: var(--primary-color);
  line-height: 1.1; letter-spacing: -0.02em;
}
.about-stat-label {
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.46);
  margin-top: 4px; display: block;
}

/* Story */
.about-story {
  position: relative;
  padding: clamp(90px, 13vw, 140px) 0;
  background: #272727; overflow: hidden;
}
.about-story::after {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(760px, 88vw); height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.30;
}
.about-story-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px); align-items: center;
}
.about-story-img-col { position: relative; }
.about-story-img-wrap {
  position: relative; border-radius: 16px;
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 28px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
}
.about-story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1.1s var(--ease-standard);
  filter: saturate(1.08) contrast(1.04);
}
.about-story-img-wrap:hover img { transform: scale(1.05); }
.about-story-img-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(0,0,0,0.48) 0%, transparent 52%),
    linear-gradient(135deg, rgba(242,193,0,0.05) 0%, transparent 55%);
}
/* .about-story-img-tag {
  position: absolute; bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,10,10,0.68);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}
.story-tag-dot {
  width: 6px; height: 6px; flex-shrink: 0;
  background: var(--primary-color);
  border-radius: 50%;
  animation: story-dot-pulse 2.2s ease-in-out infinite;
} */
@keyframes story-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}
.about-story-img-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 50%; height: 50%;
  border: 1.5px solid rgba(242,193,0,0.22);
  border-radius: 14px; pointer-events: none;
}
.about-story-img-corner-tl {
  position: absolute; top: -16px; left: -16px;
  width: 34%; height: 34%;
  border: 1.5px solid rgba(242,193,0,0.12);
  border-radius: 14px; pointer-events: none;
}
.about-story-label { color: var(--primary-color) !important; }
.about-story-title { color: var(--text-dark) !important; margin-bottom: 0; }
.about-story-text {
  color: var(--text-muted);
  font-size: 0.965rem; line-height: 1.88;
  margin: 16px 0 0;
}
body.dark-theme .about-story { background: #272727; }
body.dark-theme .about-story-title { color: #fff !important; }
body.dark-theme .about-story-text { color: rgba(255,255,255,0.56); }
.about-story-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 2px; margin: 26px 0;
}

/* Architect */
.about-architect-section {
  position: relative;
  padding: clamp(90px, 13vw, 140px) 0;
  background: #272727; overflow: hidden;
}
.about-arch-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 64px);
  pointer-events: none;
}
.about-arch-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 96px); align-items: center;
}
.about-arch-visual { position: relative; }

/* Values */
.about-values {
  position: relative;
  padding: clamp(90px, 13vw, 140px) 0;
  background: #272727; overflow: hidden;
}
.about-values::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.026) 0px, rgba(0,0,0,0.026) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.026) 0px, rgba(0,0,0,0.026) 1px, transparent 1px, transparent 64px);
  pointer-events: none;
}
.about-values::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(760px, 88vw); height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.32;
}
.about-values-header {
  text-align: center; max-width: 620px;
  margin: 0 auto clamp(52px, 7vw, 80px);
  position: relative; z-index: 1;
}
.about-values-subtitle {
  margin: 14px 0 0; color: var(--text-muted);
  font-size: 1rem; line-height: 1.7;
}
.about-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  position: relative; z-index: 1;
}
.about-value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  transition: border-color 0.35s var(--ease-standard), transform 0.35s var(--ease-standard), box-shadow 0.35s var(--ease-standard), background 0.35s var(--ease-standard);
}
.about-value-card:hover {
  border-color: rgba(242,193,0,0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.07);
}
.about-value-num {
  font-family: var(--font-heading);
  font-size: 2.6rem; font-weight: 900;
  color: rgba(242,193,0,0.18); line-height: 1;
  margin-bottom: 16px; letter-spacing: -0.04em;
  transition: color 0.35s var(--ease-standard);
}
.about-value-card:hover .about-value-num { color: rgba(242,193,0,0.40); }
.about-value-title {
  font-family: var(--font-heading);
  font-size: 1.02rem; font-weight: 400;
  color: var(--text-dark); margin: 0 0 10px;
}
.about-value-desc {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.72; margin: 0;
}
.about-values-grid .about-value-card:nth-child(1) { transition-delay: 0.04s; }
.about-values-grid .about-value-card:nth-child(2) { transition-delay: 0.14s; }
.about-values-grid .about-value-card:nth-child(3) { transition-delay: 0.24s; }
.about-values-grid .about-value-card:nth-child(4) { transition-delay: 0.04s; }
.about-values-grid .about-value-card:nth-child(5) { transition-delay: 0.14s; }
.about-values-grid .about-value-card:nth-child(6) { transition-delay: 0.24s; }
body.dark-theme .about-values { background: #272727; }
body.dark-theme .about-values::before {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 64px);
}
body.dark-theme .about-value-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
body.dark-theme .about-value-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(242,193,0,0.28); box-shadow: 0 16px 40px rgba(0,0,0,0.28); }
body.dark-theme .about-value-title { color: #fff; }
body.dark-theme .about-value-desc { color: rgba(255,255,255,0.50); }

/* Numbers */
.about-nums {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: #272727; overflow: hidden;
}
.about-nums::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 100vw); height: min(400px, 80vw);
  background: radial-gradient(ellipse at center, rgba(242,193,0,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.about-nums-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 20px; overflow: hidden;
  position: relative; z-index: 1;
}
.about-num-item {
  text-align: center;
  padding: clamp(36px, 5vw, 60px) clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(0,0,0,0.09);
  transition: background 0.3s var(--ease-standard);
}
.about-num-item:last-child { border-right: none; }
.about-num-item:hover { background: rgba(242,193,0,0.08); }
.about-num-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; color: var(--primary-color);
  line-height: 1; letter-spacing: -0.03em; margin-bottom: 10px;
}
.about-num-label {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
}
body.dark-theme .about-nums { background: #272727; }
body.dark-theme .about-nums::before {
  background: radial-gradient(ellipse at center, rgba(242,193,0,0.07) 0%, transparent 65%);
}
body.dark-theme .about-nums-grid { border-color: rgba(255,255,255,0.07); }
body.dark-theme .about-num-item { border-right-color: rgba(255,255,255,0.07); }
body.dark-theme .about-num-item:hover { background: rgba(242,193,0,0.04); }
body.dark-theme .about-num-label { color: rgba(255,255,255,0.40); }
.about-nums-grid .about-num-item:nth-child(1) { transition-delay: 0.05s; }
.about-nums-grid .about-num-item:nth-child(2) { transition-delay: 0.15s; }
.about-nums-grid .about-num-item:nth-child(3) { transition-delay: 0.25s; }
.about-nums-grid .about-num-item:nth-child(4) { transition-delay: 0.35s; }


/* ═══════════════════════════════════════════════════════════
   ─── SERVICES PAGE ───────────────────────────────────────
   ═══════════════════════════════════════════════════════════ */

/* ── Shared: Breadcrumb ───────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin-bottom: clamp(20px, 3vw, 32px);
}
.breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.breadcrumb [aria-current="page"] { color: var(--primary-color); }

/* ── Services Hero ────────────────────────────────────────── */
.svc-hero {
  position: relative; overflow: hidden;
  background: #272727;
  padding: clamp(80px, 12vw, 130px) 0 clamp(60px, 8vw, 100px);
}
.svc-hero .about-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(242,193,0,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.svc-hero-content { max-width: 680px; }
.svc-hero .section-label {
  color: var(--primary-color);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: block; margin-bottom: 14px;
}
.svc-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400; line-height: 1.1;
  color: #fff; margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.svc-hero-subtitle {
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.8vw, 1.06rem);
  color: rgba(255,255,255,0.58); line-height: 1.7;
  max-width: 540px; margin: 0;
}

/* ── Service Detail Sections ──────────────────────────────── */
.svc-detail {
  padding: clamp(72px, 10vw, 120px) 0;
  background: #272727;
}
.svc-detail--alt {
  background: #272727;
}
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.svc-detail-grid--img-right .svc-detail-content { order: 1; }
.svc-detail-grid--img-right .svc-detail-image  { order: 2; }

/* Image wrapper */
.svc-img-wrapper {
  position: relative; border-radius: var(--radius-card);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.svc-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease-standard);
}
.svc-img-wrapper:hover img { transform: scale(1.06); }
.svc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.svc-img-tag {
  position: absolute; bottom: 18px; left: 18px;
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff;
}
.svc-tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary-color);
  animation: svc-dot-pulse 2s ease-in-out infinite;
}
@keyframes svc-dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.75); }
}

/* Content */
.svc-detail .section-label {
  color: var(--primary-color);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: block; margin-bottom: 10px;
}
.svc-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800; line-height: 1.15;
  color: var(--text-dark); margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.svc-detail-intro {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: var(--text-muted); line-height: 1.75;
  margin: 0 0 28px;
}
.svc-feature-list {
  list-style: none; margin: 0 0 32px; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.svc-feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.svc-feature-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  color: var(--primary-color); margin-top: 1px;
}
.svc-feature-list li div {
  display: flex; flex-direction: column; gap: 2px;
}
.svc-feature-list li strong {
  font-size: 0.92rem; font-weight: 700;
  color: var(--text-dark);
}
.svc-feature-list li span {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.6;
}
.svc-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
}

/* Dark theme overrides for svc-detail */
body.dark-theme .svc-detail { background: #272727; }
body.dark-theme .svc-detail--alt { background: #272727; }
body.dark-theme .svc-detail-title { color: #fff; }
body.dark-theme .svc-detail-intro { color: rgba(255,255,255,0.55); }
body.dark-theme .svc-feature-list li strong { color: rgba(255,255,255,0.9); }
body.dark-theme .svc-feature-list li span { color: rgba(255,255,255,0.45); }

/* ── Our Process ──────────────────────────────────────────── */
.svc-process {
  padding: clamp(72px, 10vw, 120px) 0;
  background: #272727;
}
.svc-process-header {
  text-align: center; max-width: 560px;
  margin: 0 auto clamp(48px, 7vw, 72px);
}
.svc-process-header .section-label {
  color: var(--primary-color);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: block; margin-bottom: 10px;
}
.svc-process-header .section-title { color: #fff; }
.svc-process-subtitle {
  font-size: 0.95rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin: 10px 0 0;
}
.svc-process-steps {
  display: flex; align-items: flex-start;
  gap: 0; justify-content: center;
  flex-wrap: wrap;
}
.svc-process-step {
  flex: 1 1 180px; max-width: 220px;
  text-align: center; padding: 0 16px;
}
.svc-step-number {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 900;
  color: var(--primary-color); opacity: 0.85;
  line-height: 1; margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.svc-step-title {
  font-size: 1rem; font-weight: 700;
  color: #fff; margin: 0 0 10px;
}
.svc-step-desc {
  font-size: 0.83rem; color: rgba(255,255,255,0.48);
  line-height: 1.65; margin: 0;
}
.svc-process-connector {
  flex-shrink: 0; width: 40px; height: 1px;
  background: linear-gradient(90deg, rgba(242,193,0,0.4), rgba(242,193,0,0.15));
  align-self: center; margin-top: -40px;
}


/* ═══════════════════════════════════════════════════════════
   ─── CONTACT PAGE ────────────────────────────────────────
   ═══════════════════════════════════════════════════════════ */

/* ── Contact Hero ─────────────────────────────────────────── */
.contact-hero {
  position: relative; overflow: hidden;
  background: #272727;
  padding: clamp(80px, 12vw, 130px) 0 clamp(60px, 8vw, 100px);
}
.contact-hero .about-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(242,193,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero-content { max-width: 680px; }
.contact-hero .section-label {
  color: var(--primary-color);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: block; margin-bottom: 14px;
}
.contact-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400; line-height: 1.1;
  color: #fff; margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.contact-hero-subtitle {
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.8vw, 1.06rem);
  color: rgba(255,255,255,0.55); line-height: 1.7;
  max-width: 520px; margin: 0;
}

/* ── Contact Main Section ─────────────────────────────────── */
.contact-main {
  padding: clamp(64px, 10vw, 110px) 0;
  background: #272727;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

/* Info Column */
.contact-info-block {
  margin-bottom: 32px;
}
.contact-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--text-dark);
  letter-spacing: -0.02em; margin: 0 0 10px;
}
.contact-info-intro {
  font-size: 0.93rem; color: var(--text-muted);
  line-height: 1.7; margin: 0 0 28px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 15px;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-color);
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-text {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 2px;
}
.contact-info-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
}
.contact-info-text address,
.contact-info-text span,
.contact-info-text a {
  font-size: 0.88rem; color: var(--text-dark);
  line-height: 1.6; font-style: normal; text-decoration: none;
}
.contact-info-text a:hover { color: var(--primary-color); }

/* Social row */
.contact-social-row {
  display: flex; gap: 10px; margin-top: 24px;
}
.contact-social-link {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  background: rgba(255,255,255,0.05);
}
.contact-social-link svg { width: 17px; height: 17px; }
.contact-social-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(242,193,0,0.06);
}

/* Map */
.contact-map-wrapper {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.contact-map { display: block; }

/* Form Card */
.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800; color: var(--text-dark);
  letter-spacing: -0.02em; margin: 0 0 8px;
}
.contact-form-subtitle {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
}

/* ── Shared Form Styles (contact + career) ────────────────── */
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--text-dark);
}
.form-required { color: var(--primary-color); }
.form-input {
  width: 100%; padding: 13px 16px;
  font-family: var(--font-main); font-size: 0.9rem;
  color: var(--text-dark);
  background: #303030;
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none; appearance: none;
  box-sizing: border-box;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(242,193,0,0.12);
  background: #353535;
}
.form-textarea {
  resize: vertical; min-height: 110px;
  font-family: var(--font-main);
}
/* Select wrapper */
.form-select-wrapper { position: relative; }
.form-select { cursor: pointer; padding-right: 40px; }
.form-select-caret {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; color: var(--text-muted);
}
/* File input */
.form-file-wrapper { position: relative; cursor: pointer; }
.form-file-input {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%; z-index: 2;
}
.form-file-ui {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  background: #303030;
  border: 1.5px dashed rgba(255,255,255,0.15);
  border-radius: 10px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  color: var(--text-muted);
}
.form-file-wrapper:hover .form-file-ui,
.form-file-input:focus + .form-file-ui {
  border-color: var(--primary-color);
  background: rgba(242,193,0,0.04);
  color: var(--text-dark);
}
.form-file-label { font-size: 0.86rem; }
.form-file-browse { color: var(--primary-color); font-weight: 600; }
.form-file-name {
  font-size: 0.78rem; color: rgba(0,0,0,0.4);
  word-break: break-all;
}
.form-hint {
  font-size: 0.75rem; color: var(--text-muted);
  margin: 4px 0 0; line-height: 1.4;
}
/* Submit button */
.contact-submit-btn,
.career-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 0.95rem;
  margin-top: 4px;
}
/* Privacy note */
.form-privacy-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--text-muted);
  margin: 12px 0 0; line-height: 1.5;
}
.form-privacy-note svg { flex-shrink: 0; color: var(--primary-color); }

/* Dark theme for contact page */
body.dark-theme .contact-main { background: #272727; }
body.dark-theme .contact-info-title { color: #fff; }
body.dark-theme .contact-info-intro { color: rgba(255,255,255,0.5); }
body.dark-theme .contact-info-icon {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
body.dark-theme .contact-info-text address,
body.dark-theme .contact-info-text span { color: rgba(255,255,255,0.75); }
body.dark-theme .contact-info-text a { color: rgba(255,255,255,0.75); }
body.dark-theme .contact-info-text a:hover { color: var(--primary-color); }
body.dark-theme .contact-social-link {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}
body.dark-theme .contact-social-link:hover {
  background: rgba(242,193,0,0.07);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
body.dark-theme .contact-map-wrapper { border-color: rgba(255,255,255,0.06); }
body.dark-theme .contact-form-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
body.dark-theme .contact-form-title { color: #fff; }
body.dark-theme .contact-form-subtitle { color: rgba(255,255,255,0.45); }
body.dark-theme .form-label { color: rgba(255,255,255,0.8); }
body.dark-theme .form-input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}
body.dark-theme .form-input::placeholder { color: rgba(255,255,255,0.25); }
body.dark-theme .form-input:focus {
  border-color: var(--primary-color);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(242,193,0,0.1);
}
body.dark-theme .form-file-ui {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
}
body.dark-theme .form-file-wrapper:hover .form-file-ui {
  background: rgba(242,193,0,0.05);
  border-color: var(--primary-color);
  color: rgba(255,255,255,0.8);
}
body.dark-theme .form-file-name { color: rgba(255,255,255,0.3); }
body.dark-theme .form-hint { color: rgba(255,255,255,0.35); }
body.dark-theme .form-privacy-note { color: rgba(255,255,255,0.35); }
body.dark-theme .form-select-caret { color: rgba(255,255,255,0.3); }


/* ═══════════════════════════════════════════════════════════
   ─── CAREER PAGE ─────────────────────────────────────────
   ═══════════════════════════════════════════════════════════ */

/* ── Career Hero ──────────────────────────────────────────── */
.career-hero {
  position: relative; overflow: hidden;
  background: #272727;
  padding: clamp(80px, 12vw, 130px) 0 clamp(60px, 8vw, 100px);
}
.career-hero .about-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(242,193,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.career-hero-content { max-width: 680px; }
.career-hero .section-label {
  color: var(--primary-color);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: block; margin-bottom: 14px;
}
.career-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400; line-height: 1.1;
  color: #fff; margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.career-hero-subtitle {
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.8vw, 1.06rem);
  color: rgba(255,255,255,0.55); line-height: 1.7;
  max-width: 560px; margin: 0;
}

/* ── Current Openings ─────────────────────────────────────── */
.career-openings {
  padding: clamp(64px, 10vw, 110px) 0;
  background: #272727;
}
.career-openings-header {
  text-align: center; max-width: 560px;
  margin: 0 auto clamp(44px, 6vw, 64px);
}
.career-openings-header .section-label {
  color: var(--primary-color);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: block; margin-bottom: 10px;
}
.career-openings-subtitle {
  font-size: 0.93rem; color: var(--text-muted);
  line-height: 1.7; margin: 10px 0 0;
}

/* Empty state */
.career-empty-state {
  max-width: 520px; margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 7vw, 72px) clamp(24px, 4vw, 48px);
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(255,255,255,0.12);
  border-radius: 20px;
}
.career-empty-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(242,193,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-color);
}
.career-empty-icon svg { width: 30px; height: 30px; }
.career-empty-title {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 800;
  color: var(--text-dark); margin: 0 0 12px;
}
.career-empty-desc {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0;
}

/* Job card */
.career-job-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: box-shadow 0.25s var(--ease-standard), border-color 0.25s;
}
.career-job-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  border-color: rgba(242,193,0,0.35);
}
.career-job-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 14px;
}
.career-job-type {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(242,193,0,0.1);
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 6px;
}
.career-job-title {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 800;
  color: var(--text-dark); margin: 0 0 4px;
}
.career-job-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--text-muted);
}
.career-apply-btn {
  flex-shrink: 0; padding: 10px 20px; font-size: 0.84rem;
}
.career-job-desc {
  font-size: 0.87rem; color: var(--text-muted);
  line-height: 1.65; margin: 0 0 14px;
}
.career-job-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.career-tag {
  font-size: 0.73rem; font-weight: 600;
  color: var(--text-dark);
  background: rgba(0,0,0,0.05);
  padding: 4px 12px; border-radius: 50px;
  letter-spacing: 0.03em;
}

/* ── Application Form ─────────────────────────────────────── */
.career-apply {
  padding: clamp(64px, 10vw, 110px) 0;
  background: #272727;
}
body.dark-theme .career-apply {
  background: #272727;
}
.career-apply-inner { max-width: 760px; margin: 0 auto; }
.career-apply-header {
  text-align: center; margin-bottom: clamp(36px, 5vw, 52px);
}
.career-apply-header .section-label {
  color: var(--primary-color);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: block; margin-bottom: 10px;
}
.career-apply-header .section-title { color: var(--text-dark); }
body.dark-theme .career-apply-header .section-title { color: #fff; }
.career-apply-subtitle {
  font-size: 0.93rem; color: var(--text-muted);
  line-height: 1.7; margin: 10px 0 0;
}
body.dark-theme .career-apply-subtitle { color: rgba(255,255,255,0.48); }

.career-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
}
body.dark-theme .career-form-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
/* Career form fields — light theme */
.career-form .form-label { color: var(--text-dark); }
.career-form .form-input {
  background: var(--surface-color);
  border-color: var(--border-color);
  color: var(--text-dark);
}
.career-form .form-input::placeholder { color: var(--text-muted); }
.career-form .form-input:focus {
  border-color: var(--primary-color);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(242,193,0,0.12);
}
.career-form .form-file-ui {
  background: var(--surface-color);
  border-color: var(--border-color);
  color: var(--text-muted);
}
.career-form .form-file-wrapper:hover .form-file-ui {
  background: rgba(242,193,0,0.05);
  border-color: var(--primary-color);
  color: var(--text-dark);
}
.career-form .form-file-name { color: var(--text-muted); }
.career-form .form-hint { color: var(--text-muted); }
.career-form .form-privacy-note { color: var(--text-muted); }
.career-form .form-select-caret { color: var(--text-muted); }
/* Career form fields — dark theme overrides */
body.dark-theme .career-form .form-label { color: rgba(255,255,255,0.8); }
body.dark-theme .career-form .form-input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}
body.dark-theme .career-form .form-input::placeholder { color: rgba(255,255,255,0.25); }
body.dark-theme .career-form .form-input:focus {
  background: rgba(255,255,255,0.07);
}
body.dark-theme .career-form .form-file-ui {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
}
body.dark-theme .career-form .form-file-wrapper:hover .form-file-ui {
  color: rgba(255,255,255,0.8);
}
body.dark-theme .career-form .form-file-name { color: rgba(255,255,255,0.3); }
body.dark-theme .career-form .form-hint { color: rgba(255,255,255,0.35); }
body.dark-theme .career-form .form-privacy-note { color: rgba(255,255,255,0.35); }
body.dark-theme .career-form .form-select-caret { color: rgba(255,255,255,0.3); }

/* Dark theme for career openings section */
body.dark-theme .career-openings { background: #272727; }
body.dark-theme .career-openings-subtitle { color: rgba(255,255,255,0.45); }
body.dark-theme .career-empty-state {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
}
body.dark-theme .career-empty-title { color: #fff; }
body.dark-theme .career-empty-desc { color: rgba(255,255,255,0.45); }
body.dark-theme .career-job-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}
body.dark-theme .career-job-title { color: #fff; }
body.dark-theme .career-tag {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
}


/* ═══════════════════════════════════════════════════════════
   ─── RESPONSIVE ADJUSTMENTS (new pages) ──────────────────
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .svc-detail-grid,
  .svc-detail-grid--img-right {
    grid-template-columns: 1fr;
  }
  .svc-detail-grid--img-right .svc-detail-content { order: 2; }
  .svc-detail-grid--img-right .svc-detail-image  { order: 1; }
  .svc-process-connector { display: none; }
  .svc-process-steps { gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .svc-process-step { max-width: 100%; flex-basis: 100%; }
  .career-job-header { flex-direction: column; align-items: flex-start; }
}

/* About page responsive */
@media (max-width: 900px) {
  .about-story-inner,
  .about-arch-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-img-col { order: -1; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-nums-grid { grid-template-columns: repeat(2, 1fr); }
  .about-num-item:nth-child(2) { border-right: none; }
  .about-num-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.07); }
  .about-num-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 600px) {
  .about-stat { padding-right: 18px; margin-right: 18px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-hero-stats { gap: 16px; }
}
/* 
   PROJECT LISTING PAGES (architecture.html / interiors.html)
    */

/*  Compact project hero  */
.proj-hero {
  background: #272727;
  padding: clamp(60px, 8vw, 90px) 0 clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}

.proj-hero-content {
  max-width: 640px;
}

.proj-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.12;
  margin: 0.4em 0 0;
  letter-spacing: -0.02em;
}

/*  Project listing grid  */
.proj-listing {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #272727;
}

body.dark-theme .proj-listing {
  background: #272727;
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

/*  Project card  */
.proj-card {
  display: block;
  text-decoration: none;
  background: #272727;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-standard),
              box-shadow 0.35s var(--ease-standard);
}

body.dark-theme .proj-card {
  background: #272727;
}

.proj-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.16);
}

body.dark-theme .proj-card:hover {
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.48);
}

.proj-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.proj-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-standard);
}

.proj-card:hover .proj-card-img-wrap img {
  transform: scale(1.07);
}

.proj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.28) 100%
  );
  pointer-events: none;
}

.proj-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-color);
  color: #0d0d0d;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  line-height: 1;
}

.proj-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px 20px;
}

.proj-card-info {
  flex: 1;
  min-width: 0;
}

.proj-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 6px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.dark-theme .proj-card-title {
  color: var(--text-light);
}

.proj-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.proj-card-location svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--primary-color);
}

.proj-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--primary-color);
  flex-shrink: 0;
  transition: background 0.22s, transform 0.22s;
}

body.dark-theme .proj-card-arrow {
  background: rgba(255, 255, 255, 0.08);
}

.proj-card:hover .proj-card-arrow {
  background: var(--primary-color);
  color: #0d0d0d;
  transform: translateX(3px);
}

.proj-card-arrow svg {
  width: 16px;
  height: 16px;
}

/* 
   PROJECT DETAIL PAGES
    */

/*  Detail hero  */
.proj-detail-hero {
  background: #272727;
  padding: clamp(60px, 8vw, 90px) 0 clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}

.proj-detail-hero-content {
  max-width: 720px;
  margin-bottom: 28px;
}

.proj-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0.4em 0 0.6em;
  letter-spacing: -0.02em;
}

/* Meta chips (category + location) */
.proj-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.proj-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.proj-meta-chip--category {
  background: var(--primary-color);
  color: #0d0d0d;
}

.proj-meta-chip--location {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

.proj-meta-chip--location svg {
  width: 12px;
  height: 12px;
}

/* Back link */
.proj-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s, gap 0.2s;
}

.proj-back-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.proj-back-link:hover {
  color: var(--primary-color);
  gap: 12px;
}

.proj-back-link:hover svg {
  transform: translateX(-4px);
}

/*  Image gallery  */
.proj-gallery {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #272727;
}

body.dark-theme .proj-gallery {
  background: #272727;
}

.proj-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.proj-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-strong);
}

.proj-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-standard);
}

.proj-gallery-item:hover img {
  transform: scale(1.04);
}

/* Wide item (spans full row) */
.proj-gallery-item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

/*  Project CTA  */
.proj-cta-section {
  padding: clamp(64px, 8vw, 96px) 0;
  background: #272727;
}

body.dark-theme .proj-cta-section {
  background: #272727;
}

.proj-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.proj-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0.4em 0 0.5em;
  line-height: 1.15;
}

.proj-cta-text {
  font-family: 'Didact Gothic', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.7;
  margin: 0 0 2em;
}

/* 
   RESPONSIVE — PROJECT PAGES
    */

@media (max-width: 900px) {
  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {

  .proj-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .proj-gallery-item--wide {
    aspect-ratio: 4 / 3;
  }

  .proj-card-title {
    white-space: normal;
  }

  .proj-detail-title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
  }

  .proj-back-link {
    font-size: 0.78rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   ─── DARK THEME OVERRIDES — Always-dark sections ─────────
   Ensures all hardcoded near-black section backgrounds
   shift to the #666 palette when dark mode is active.
   ═══════════════════════════════════════════════════════════ */

/* Homepage hero */
body.dark-theme .hero {
  background: #272727;
}

/* Video showcase alternating rows */
body.dark-theme .video-showcase--1 {
  background: #272727;
}
body.dark-theme .video-showcase--2 {
  background: #272727;
}

/* CTA section */
body.dark-theme .cta-section {
  background: #272727;
}

/* Site footer */
body.dark-theme .site-footer {
  background: #272727;
}

/* About page hero + architect section */
body.dark-theme .about-hero {
  background: #272727;
}
body.dark-theme .about-architect-section {
  background: #272727;
}

/* Services page hero + process section */
body.dark-theme .svc-hero {
  background: #272727;
}
body.dark-theme .svc-process {
  background: #272727;
}

/* Contact page hero */
body.dark-theme .contact-hero {
  background: #272727;
}

/* Career page hero */
body.dark-theme .career-hero {
  background: #272727;
}

/* Project listing hero */
body.dark-theme .proj-hero {
  background: #272727;
}

/* Scroll-to-top button */
body.dark-theme .scroll-top {
  background: rgba(80,80,80,0.90);
}

/* Desktop dropdown menu */
body.dark-theme .desktop-nav .dropdown {
  background: rgba(80,80,80,0.97);
  border-color: rgba(255,255,255,0.14);
}

/* ── Why Choose Us — dark theme fixes ────────────────────────── */
body.dark-theme .why-section::before {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 64px);
}
body.dark-theme .why-card {
  background: #272727;
  border-color: rgba(242,193,0,0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}
body.dark-theme .why-card:hover {
  background: #272727;
  border-color: rgba(242,193,0,0.65);
  box-shadow: 0 20px 48px rgba(0,0,0,0.32), 0 0 0 1px rgba(242,193,0,0.12);
}
body.dark-theme .why-card-title {
  color: var(--text-light);
}
body.dark-theme .why-card-desc {
  color: var(--text-muted);
}
body.dark-theme .why-subtitle {
  color: var(--text-muted);
}

/* ── Testimonials — dark theme fixes ─────────────────────────── */
body.dark-theme .testi-section {
  background: #272727;
}
body.dark-theme .testi-section::before {
  display: none;
}
body.dark-theme .testi-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
body.dark-theme .testi-card:hover {
  background: var(--surface-strong);
  border-color: rgba(242,193,0,0.50);
  box-shadow: 0 12px 56px rgba(0,0,0,0.30), 0 0 0 1px rgba(242,193,0,0.12);
}
body.dark-theme .testi-text {
  color: var(--text-muted);
}
body.dark-theme .testi-name {
  color: var(--text-light);
}
body.dark-theme .testi-author {
  border-top-color: var(--border-color);
}
body.dark-theme .testi-avatar {
  background: var(--background-dark);
  border-color: rgba(242,193,0,0.40);
}
body.dark-theme .testi-subtitle {
  color: var(--text-muted);
}
