/* ================================================================
   BRICK BY BRICK - DESIGN SYSTEM
   ================================================================ */

/* ========== CUSTOM PROPERTIES ========== */
:root {
  /* Colors */
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;

  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;

  --white: #ffffff;
  --black: #1a1a1a;
  --bg-cream: #fafaf8;
  --bg-dark: #111111;

  /* Typography */
  --font-serif: 'DM Serif Display', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 6rem;
  --container-max: 1200px;
  --container-pad: 1.5rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.3s;
  --duration-slow: 0.6s;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; -webkit-tap-highlight-color: transparent; }
input, select, textarea { font-size: 16px; -webkit-tap-highlight-color: transparent; }

/* Touch optimization */
@media (hover: none) and (pointer: coarse) {
  a, button, input, select, textarea, .gallery-filter, .faq-question, .service-card, .area-pill { touch-action: manipulation; }
}

/* Selection color */
::selection { background: var(--amber-200); color: var(--black); }

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-600), var(--amber-400));
  z-index: 10000;
  transition: width 0.1s linear;
  width: 0%;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-700);
  margin-bottom: 0.75rem;
  display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--stone-500);
  max-width: 600px;
  line-height: 1.7;
}

/* ========== LAYOUT ========== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
section { padding: var(--section-pad) 0; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--duration-fast);
}
.btn:active::after { opacity: 1; }

.btn-primary {
  background: var(--amber-700);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--amber-800);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(180,83,9,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--stone-300);
}
.btn-outline-dark:hover {
  border-color: var(--black);
  background: var(--stone-50);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 1.15rem 2.75rem; font-size: 1.05rem; }
.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.85rem; }
.btn-icon { gap: 0.6rem; }
.btn-icon svg { width: 18px; height: 18px; transition: transform var(--duration-normal); }
.btn-icon:hover svg { transform: translateX(3px); }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 0.75rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.4s var(--ease-out);
  white-space: nowrap;
}
.nav-logo span { color: var(--amber-400); }
.nav.scrolled .nav-logo { color: var(--black); }
.nav.scrolled .nav-logo span { color: var(--amber-600); }

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--duration-normal);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-500);
  transition: width var(--duration-normal) var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--stone-600); }
.nav.scrolled .nav-links a:hover { color: var(--black); }
.nav.scrolled .nav-links a:not(.nav-cta).active { color: var(--amber-700); }

.nav-cta {
  padding: 0.65rem 1.5rem !important;
  background: var(--amber-700) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--duration-normal) var(--ease-out) !important;
}
.nav-cta:hover {
  background: var(--amber-800) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(180,83,9,0.3);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
  position: relative;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--duration-normal) var(--ease-out);
  display: block;
  border-radius: 2px;
}
.nav.scrolled .mobile-toggle span { background: var(--black); }

/* Hamburger -> X animation */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1005;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--stone-700);
  border-bottom: 1px solid var(--stone-100);
  transition: color var(--duration-normal), padding-left var(--duration-normal);
}
.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--amber-700);
  padding-left: 0.5rem;
}
.mobile-drawer .drawer-cta {
  margin-top: 2rem;
  text-align: center;
}
.mobile-drawer .drawer-cta .btn {
  width: 100%;
  justify-content: center;
}
.mobile-drawer .drawer-contact {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--stone-200);
}
.mobile-drawer .drawer-contact a {
  font-size: 0.9rem;
  color: var(--stone-500);
  border: none;
  padding: 0.5rem 0;
}
.mobile-drawer .drawer-contact a:hover { color: var(--amber-700); }

/* Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal);
  backdrop-filter: blur(2px);
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ========== PAGE HEADER (for inner pages) ========== */
.page-header {
  padding: 10rem 0 4rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,83,9,0.08) 0%, transparent 70%);
}
.page-header .section-label { color: var(--amber-400); }
.page-header .section-title { color: var(--white); margin-bottom: 1rem; }
.page-header .section-subtitle { color: rgba(255,255,255,0.6); }
.page-header .breadcrumbs {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.page-header .breadcrumbs a {
  color: rgba(255,255,255,0.6);
  transition: color var(--duration-normal);
}
.page-header .breadcrumbs a:hover { color: var(--amber-400); }
.page-header .breadcrumbs span { margin: 0 0.5rem; }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-full);
  color: var(--amber-300);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber-400);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--amber-400);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  padding: 3rem 0;
  border-bottom: 1px solid var(--stone-200);
  background: var(--white);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--stone-500);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--amber-600);
  flex-shrink: 0;
}

/* ========== SERVICES ========== */
.services { background: var(--bg-cream); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  group: true;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--duration-normal);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}
.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  transform: translateY(8px);
  opacity: 0.7;
  transition: all var(--duration-normal) var(--ease-out);
}
.service-card:hover .service-card-desc {
  transform: translateY(0);
  opacity: 1;
}
.service-card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: all var(--duration-normal) var(--ease-out);
  backdrop-filter: blur(4px);
}
.service-card-arrow svg { width: 18px; height: 18px; color: var(--white); }
.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========== ABOUT / SPLIT SECTION ========== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.about-image {
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}
.about-image:hover img { transform: scale(1.03); }
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  background: var(--black);
}
.about-content .section-label { color: var(--amber-400); }
.about-content .section-title { color: var(--white); }
.about-content .section-subtitle { color: rgba(255,255,255,0.6); }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245,158,11,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: all var(--duration-normal);
}
.about-value:hover .about-value-icon {
  background: rgba(245,158,11,0.2);
  transform: scale(1.08);
}
.about-value-icon svg { width: 20px; height: 20px; color: var(--amber-400); }
.about-value h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.about-value p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ========== PORTFOLIO ========== */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 300px 300px;
  gap: 1.25rem;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item:first-child { grid-row: 1 / 3; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--duration-normal);
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  backdrop-filter: blur(4px);
  transition: transform var(--duration-normal) var(--ease-out);
}
.portfolio-item:hover .portfolio-item-label { transform: translateY(-4px); }

/* ========== PROCESS ========== */
.process { background: var(--bg-cream); }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-subtitle { margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.process-step { text-align: center; position: relative; }
.process-step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: rgba(180,83,9,0.1);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--duration-normal);
}
.process-step:hover .process-step-number { color: rgba(180,83,9,0.2); }
.process-step h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--stone-500);
  line-height: 1.6;
}
.process-connector {
  position: absolute;
  top: 2rem;
  right: -1.25rem;
  width: 2.5rem;
  height: 1px;
  background: var(--stone-300);
}
.process-step:last-child .process-connector { display: none; }

/* ========== TESTIMONIALS ========== */
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  padding: 2.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--stone-200);
  transition: all var(--duration-normal) var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--stone-300);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}
.testimonial-stars svg { width: 16px; height: 16px; color: var(--amber-500); fill: var(--amber-500); }
.testimonial-text {
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--stone-400);
  margin-top: 0.15rem;
}

/* ========== FAQ SECTION ========== */
.faq { background: var(--white); }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header .section-subtitle { margin: 0 auto; }
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--stone-200);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-normal);
}
.faq-question:hover { color: var(--amber-700); }
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--stone-400);
  transition: transform var(--duration-normal) var(--ease-out);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--stone-500);
  line-height: 1.7;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.85);
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  padding: 5rem 0 2rem;
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-out);
}
.footer-social a:hover {
  border-color: var(--amber-500);
  background: rgba(245,158,11,0.08);
  transform: translateY(-2px);
}
.footer-social a svg { width: 14px; height: 14px; color: rgba(255,255,255,0.5); }
.footer-social a:hover svg { color: var(--amber-400); }
.footer h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.footer ul li { margin-bottom: 0.85rem; }
.footer ul a {
  font-size: 0.88rem;
  transition: all var(--duration-normal);
}
.footer ul a:hover { color: var(--amber-400); padding-left: 3px; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { transition: color var(--duration-normal); }
.footer-bottom-links a:hover { color: var(--amber-400); }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--amber-700);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: 0 4px 15px rgba(180,83,9,0.3);
  cursor: pointer;
  border: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--amber-800);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(180,83,9,0.4);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.5s; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ========== CONTACT FORM STYLES ========== */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.15rem;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: all var(--duration-normal);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--stone-400); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { appearance: none; cursor: pointer; }

/* ========== CARD STYLES ========== */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stone-200);
  transition: all var(--duration-normal) var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.card-body { padding: 1.75rem; }
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-700);
  background: var(--amber-50);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}
.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.card-text {
  font-size: 0.92rem;
  color: var(--stone-500);
  line-height: 1.65;
}

/* ========== STAT COUNTER SECTION ========== */
.stats-section {
  padding: 5rem 0;
  background: var(--black);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--amber-400);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ========== GALLERY / LIGHTBOX ========== */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.gallery-filter {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--stone-100);
  color: var(--stone-600);
  transition: all var(--duration-normal);
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}
.gallery-filter:hover { background: var(--stone-200); }
.gallery-filter.active {
  background: var(--amber-700);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-normal);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.gallery-item-meta {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--stone-200);
}
.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 15px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--amber-500);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--amber-100);
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.timeline-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.timeline-desc {
  font-size: 0.92rem;
  color: var(--stone-500);
  line-height: 1.6;
}

/* ========== SERVICE DETAIL CARDS ========== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stone-200);
  margin-bottom: 2.5rem;
  background: var(--white);
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.service-detail:hover .service-detail-img img { transform: scale(1.03); }
.service-detail-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.service-detail-content p {
  font-size: 0.95rem;
  color: var(--stone-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--stone-600);
}
.service-feature svg {
  width: 16px;
  height: 16px;
  color: var(--amber-600);
  flex-shrink: 0;
}

/* ========== TEAM GRID ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-member {
  text-align: center;
}
.team-member-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  transition: transform var(--duration-normal) var(--ease-out);
}
.team-member:hover .team-member-img { transform: scale(1.03); }
.team-member h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.team-member p {
  font-size: 0.85rem;
  color: var(--stone-500);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:last-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 400px; }
  .about-content { padding: 3.5rem 2rem; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .portfolio-item:first-child { grid-row: auto; }
  .portfolio-item { min-height: 250px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .service-detail-img { min-height: 300px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem;
    --container-pad: 1.25rem;
  }
  section { padding: var(--section-pad) 0; }

  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .hero { min-height: 100svh; min-height: 600px; padding-top: 5rem; align-items: flex-start; }
  .hero-content { padding-top: 1rem; }
  .hero h1 { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero p { font-size: 1rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.75rem; }

  .trust-bar-inner { gap: 1.5rem; justify-content: flex-start; overflow-x: auto; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card { aspect-ratio: 16/10; }
  .services-grid .service-card:last-child { aspect-ratio: 16/10; }

  .about-content { padding: 2.5rem 1.5rem; }
  .about-values { grid-template-columns: 1fr; gap: 1.5rem; }

  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .portfolio-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .portfolio-item { min-height: 220px; }

  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 0.5rem; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.5rem; }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filter { flex-shrink: 0; min-height: 44px; display: flex; align-items: center; }

  .service-detail-content { padding: 2rem 1.5rem; }
  .service-features { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Mobile touch targets */
  .btn { min-height: 48px; display: inline-flex; align-items: center; }
  .faq-question { min-height: 52px; padding-top: 1rem; padding-bottom: 1rem; }
  .nav-cta { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-social a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .drawer-cta .btn { width: 100%; justify-content: center; min-height: 52px; }

  .team-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 3rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; min-height: 52px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-number { font-size: 2.25rem; }
  .service-detail-content { padding: 1.5rem; }
  .service-detail-content h3 { font-size: 1.35rem; }
  .project-card-content { padding: 1.5rem; }
  .project-card-stats { gap: 1rem; flex-wrap: wrap; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .testimonial-card { padding: 1.5rem; }
}


/* ================================================
   VIDEO HERO
   ================================================ */
.video-hero { position: relative; overflow: hidden; }
.video-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%); z-index: 1; }
.video-hero .container { position: relative; z-index: 2; }

/* ================================================
   BEFORE / AFTER SLIDER
   ================================================ */
.before-after-slider { position: relative; overflow: hidden; border-radius: var(--radius-lg); max-width: 900px; margin: 2.5rem auto 0; aspect-ratio: 16/9; cursor: ew-resize; user-select: none; -webkit-user-select: none; }
.ba-before-img, .ba-after-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before-img { clip-path: inset(0 50% 0 0); z-index: 2; }
.ba-after-img { z-index: 1; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: white; z-index: 10; transform: translateX(-50%); transition: none; }
.ba-handle::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: white; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.ba-handle::after { content: '\2194'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 18px; color: var(--stone-600); z-index: 11; }
.ba-label { position: absolute; top: 1rem; padding: 0.4rem 1rem; background: rgba(0,0,0,0.6); color: white; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; z-index: 5; }
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* ================================================
   FLOATING MOBILE CTA
   ================================================ */
.floating-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: white; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); display: none; padding: 0.75rem 1rem; gap: 0.75rem; }
.floating-cta.visible { display: flex; }
.floating-cta a { flex: 1; text-align: center; padding: 0.85rem 1rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.floating-cta-phone { background: var(--stone-100); color: var(--stone-800); }
.floating-cta-phone svg { width: 18px; height: 18px; }
.floating-cta-estimate { background: var(--amber-700); color: white; }
@media(min-width: 769px) { .floating-cta { display: none !important; } }
@media(max-width: 768px) { body { padding-bottom: 70px; } }

/* ================================================
   BADGE WALL (Awards / Certifications)
   ================================================ */
.badge-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.badge-card { background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius-md); padding: 2rem; text-align: center; transition: all var(--duration-normal) var(--ease-out); }
.badge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.badge-card-icon { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--amber-600); width: 48px; height: 48px; border-radius: 50%; background: var(--amber-50); display: flex; align-items: center; justify-content: center; margin-left: auto; margin-right: auto; }
.badge-card h4 { font-family: var(--font-sans); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.35rem; color: var(--stone-800); }
.badge-card p { font-size: 0.82rem; color: var(--stone-500); line-height: 1.5; }
@media(max-width: 768px) { .badge-wall { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .badge-wall { grid-template-columns: 1fr; } }

/* ================================================
   NEWSLETTER SIGNUP
   ================================================ */
.newsletter-section { background: var(--amber-50, #fffbeb); padding: 5rem 0; text-align: center; }
.newsletter-section h2 { font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; color: var(--stone-800); }
.newsletter-section p { color: var(--stone-500); max-width: 520px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.7; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto; }
.newsletter-form input[type="email"] { flex: 1; padding: 1rem 1.25rem; border: 1.5px solid var(--stone-200); border-radius: var(--radius-md); font-family: var(--font-sans); font-size: 0.95rem; outline: none; transition: all var(--duration-normal); background: white; }
.newsletter-form input[type="email"]:focus { border-color: var(--amber-500); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1); }
.newsletter-form .btn { white-space: nowrap; }
.newsletter-success { color: var(--amber-700); font-weight: 600; font-size: 1.1rem; padding: 2rem 0; }
@media(max-width: 480px) { .newsletter-form { flex-direction: column; } }

/* ================================================
   MULTI-STEP FORM WIZARD
   ================================================ */
.form-wizard { position: relative; }
.form-steps-indicator { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; }
.step-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--stone-200); transition: all var(--duration-normal); }
.step-dot.active { background: var(--amber-600); transform: scale(1.3); }
.step-dot.completed { background: var(--amber-400); }
.step-line { flex: 1; height: 2px; background: var(--stone-200); }
.step-line.completed { background: var(--amber-400); }
.form-step { display: none; animation: fadeIn 0.3s ease; }
.form-step.active { display: block; }
.form-step h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--stone-800); }
.form-nav { display: flex; justify-content: space-between; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--stone-100); }
.form-select { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--stone-200); border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.95rem; color: var(--stone-700); background: white; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 20px; cursor: pointer; transition: all var(--duration-normal); }
.form-select:focus { border-color: var(--amber-500); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1); }

/* ================================================
   TEAM MEMBER CARDS
   ================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-member { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--amber-100, #fef3c7); color: var(--amber-700); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; margin: 0 auto 1.25rem; border: 3px solid var(--amber-200, #fde68a); }
.team-member h4 { font-family: var(--font-sans); font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; color: var(--stone-800); }
.team-title { font-size: 0.85rem; color: var(--amber-700); font-weight: 600; margin-bottom: 0.5rem; display: block; }
.team-bio { font-size: 0.85rem; color: var(--stone-500); line-height: 1.55; }
@media(max-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ================================================
   PROJECT / CASE STUDY CARD
   ================================================ */
.project-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--stone-200); background: var(--white); }
.project-card-img { position: relative; overflow: hidden; min-height: 380px; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-card-img img { transform: scale(1.03); }
.project-card-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.project-card-content .section-label { margin-bottom: 0.5rem; }
.project-card-content h3 { font-family: var(--font-serif); font-size: 1.75rem; margin-bottom: 0.75rem; color: var(--stone-800); }
.project-card-meta { font-size: 0.85rem; color: var(--stone-400); margin-bottom: 1rem; }
.project-card-stats { display: flex; gap: 2rem; margin: 1.5rem 0; padding: 1.5rem 0; border-top: 1px solid var(--stone-100); border-bottom: 1px solid var(--stone-100); }
.project-card-stat { text-align: center; }
.project-card-stat-value { font-family: var(--font-serif); font-size: 1.35rem; color: var(--amber-700); display: block; }
.project-card-stat-label { font-size: 0.75rem; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.08em; }
.project-card-content p { font-size: 0.95rem; line-height: 1.7; color: var(--stone-500); margin-bottom: 1.5rem; }
@media(max-width: 768px) { .project-card { grid-template-columns: 1fr; } .project-card-img { min-height: 250px; } .project-card-content { padding: 2rem; } }

/* ================================================
   GALLERY FILTERS
   ================================================ */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; }
.gallery-filter { padding: 0.6rem 1.5rem; border-radius: var(--radius-full); border: 1.5px solid var(--stone-200); background: transparent; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; color: var(--stone-500); cursor: pointer; transition: all var(--duration-normal); }
.gallery-filter:hover { border-color: var(--amber-300); color: var(--stone-700); }
.gallery-filter.active { background: var(--stone-800); color: white; border-color: var(--stone-800); }
.gallery-item { transition: opacity 0.4s ease, transform 0.4s ease; }
.gallery-item.hidden { opacity: 0; transform: scale(0.95); pointer-events: none; position: absolute; }
