/* ========================================
   401 Lighting Design - Main Stylesheet
   ======================================== */

/* === Root Variables === */

/* @import url('https://fonts.cdnfonts.com/css/helvetica-neue-55'); */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-bg: #0a0a09;
  --color-bg-secondary: #121210;
  --color-white: #f5f4f0;
  --color-white-dim: #D9D9D9;
  --color-white-faint: rgba(245, 244, 240, 0.35);
  --color-border: rgba(245, 244, 240, 0.1);
  --color-border-soft: rgba(245, 244, 240, 0.06);

  /* --font-display: 'Helvetica Neue', sans-serif; */
  --font-display: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
}

/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: clip;
}

body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-fluid {
  padding-left: 2.375rem;
  padding-right: 2.375rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(11.949999809265137px);
  /* background: #000; */
  /* background: linear-gradient(180deg, #131316 0%, rgba(19, 19, 22, 0.00) 100%), linear-gradient(180deg, rgba(19, 19, 22, 0.00) 47.4%, #131316 100%), radial-gradient(50% 50% at 50% 50%, rgba(19, 19, 22, 0.00) 15%, rgba(19, 19, 22, 0.76) 100%), url(<path-to-image>) lightgray -1204px -693.121px / 249.861% 193.529% no-repeat; */
}

/* Hero SVG Background */
.hero-bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  z-index: 0;
  display: block;
}

/* Hero Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
  filter: grayscale(100%);
}

/* Hero Overlays */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 9, 0.5) 0%,
      rgba(10, 10, 9, 0.3) 40%,
      rgba(10, 10, 9, 0.7) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem 2.375rem;
  background: transparent;
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
}

.navbar-logo-mobile {
  display: none;
}

.navbar-logo-mobile .logo-image {
  /* width: 80px; */
  height: 26px;
  object-fit: contain;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.375rem;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-white);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.hamburger:hover span:nth-child(1) {
  transform: translateY(1px);
}

.hamburger:hover span:nth-child(3) {
  transform: translateY(-1px);
}

/* Hamburger → X */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Prevent hover nudge from fighting the X state */
.hamburger.is-open:hover span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-open:hover span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Raise navbar above overlay when menu is open */
.navbar.menu-is-open {
  z-index: 1000;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 3.5rem;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  /* font-size: clamp(2rem, 5vw, 4.5rem); */
  font-size: 82px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #D9D9D9;
  margin: 0;
  padding-bottom: 20rem;
}

/* Hero Footer */
.hero-footer {
  position: relative;
  z-index: 10;
  padding-bottom: 8rem;
  margin-top: auto;
}

.hero-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--color-white);
  background-image: url('images/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 97px;
  height: 34.642px;
  aspect-ratio: 14/5;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border: 1px solid var(--color-white);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-white);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: var(--color-white);
  color: var(--color-bg);
}

.btn-contact svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  transform: rotate(45deg);

}

.btn-contact:hover svg {
  transform: translate(2px, -2px);
  transform: rotate(45deg);
}

.divider {
  height: 1px;
  background: var(--color-border);
  margin: 2.25rem 0;
}

.hero-footer-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-white-dim);
  margin: 0;
}

.footer-label {
  font-size: 14px;
  color: var(--color-white);
  margin: 0 0 0.25rem 0;
}

.footer-info {
  font-size: 14px;
  color: rgba(217, 217, 217, 0.30);
  /*var(--color-white-dim);*/
  margin: 0;
  line-height: 1.65;
}

.footer-info a:hover {
  color: var(--color-white);
}

/* ========================================
   MARQUEE
   ======================================== */

.marquee {
  background: var(--color-white);
  color: #000;
  padding: 2.125rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 10s linear infinite;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  padding-right: 3rem;
}

.marquee-content .dot {
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  display: inline-block;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========================================
   OUR WORK SECTION
   ======================================== */

.our-work {
  position: relative;
  padding: 5.625rem 0 0;
  overflow: hidden;
}

.work-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.section-title {
  font-family: var(--font-display);
  /* font-weight: 600; */
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin: 0;
  position: relative;
  z-index: 1;
}

.section-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-white-dim);
  margin: 0;
  /* max-width: 420px; */
  position: relative;
  z-index: 1;
}

/* Categories */
.categories {
  margin-top: 15rem;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.category-item {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border-soft);
  color: var(--color-white-faint);
  cursor: pointer;
  transition: color 0.3s ease;
}

.category-item:last-child {
  border-bottom: 1px solid var(--color-border-soft);
}

.category-item:hover,
.category-item.active {
  color: var(--color-white);
}

.category-item:hover .category-arrow,
.category-item.active .category-arrow {
  transform: rotate(45deg);
  color: var(--color-white);
}

.category-number {
  /* font-family: var(--font-display);
  font-weight: 500; */
  font-size: 32px;
}

.category-name {
  /* font-family: var(--font-display); */
  /* font-weight: 500; */
  font-size: 38px;
  /* font-size: clamp(1.5rem, 3vw, 2.375rem); */
  text-align: left;
  letter-spacing: -0.01em;
  margin-left: 22%;

}

.category-arrow {
  justify-self: end;
  transition: all 0.3s ease;
}

/* ========================================
   OUR APPROACH / QUOTE SECTION
   ======================================== */

.quote-wrapper {
  position: relative;
  padding: 10.25rem 0 5rem;
  border-top: 0px solid var(--color-border-soft);
  overflow: hidden;
}

/* video background */
.quote-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
  filter: grayscale(100%);
}

.quote-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(10, 10, 9, 0.55) 0%,
      rgba(10, 10, 9, 0.25) 40%,
      rgba(10, 10, 9, 0.7) 100%);
  pointer-events: none;
}

.quote-wrapper .container-fluid {
  position: relative;
  z-index: 2;
}

/* second description paragraph spacing */
.quote-wrapper .section-description+.section-description {
  margin-top: 1.25rem;
}

/* quote area */
.quote-section {
  margin-top: 3.75rem;
}

.quote-label {
  font-size: 0.8125rem;
  color: var(--color-white-dim);
  /* margin: 0 0 2rem; */
  letter-spacing: 0.02em;
}

/* slider: only active slide visible */
.testimonial-slider {
  position: relative;
  min-height: 160px;
}

.quote-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 1.75rem;
  display: none;
  max-width: 900px;
}

.quote-text.is-active {
  display: block;
}

.quote-author {
  font-size: 0.8125rem;
  color: var(--color-white-faint);
  /* margin: 0 0 2.5rem; */
}

/* carousel navigation */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.t-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.t-btn:hover {
  background: rgba(245, 244, 240, 0.1);
  border-color: rgba(245, 244, 240, 0.35);
}

.t-btn svg {
  width: 14px;
  height: 14px;
}

.t-count {
  font-size: 13px;
  color: var(--color-white-dim);
  min-width: 36px;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .quote-wrapper {
    padding: 4rem 0 3.5rem;
  }

  .quote-text {
    font-size: clamp(1.375rem, 5vw, 2rem);
  }
}

/* ========================================
   SELECT PROJECTS
   ======================================== */

.select-projects {
  padding: 10rem 0 2.5rem;
  border-top: 1px solid var(--color-border-soft);
}

.project-card {
  padding: 3.75rem 0;
  border-bottom: 1px solid var(--color-border-soft);
}

/* Title moves LEFT on card hover */
.project-card:hover .project-title {
  transform: translateX(-8px);
}

/* Button border appears on card hover */
.project-card:hover .btn-project::before {
  border: 1px solid var(--color-white);
}

.project-card.project-card:last-child {
  border-bottom: none;
}

.project-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #1a1a18;
  border-radius: 10px;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.project-image:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.project-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: 30px;
}

.project-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin: 0 85px 0.5rem 0;
}

.project-meta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: normal;
  color: var(--color-white-dim);
  margin: 0 0 3.75rem 0;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: auto;
}

.project-description {
  font-size: 12px;
  line-height: 1.65;
  color: var(--color-white-dim);
  max-width: 300px;
  margin: 0;
}

.btn-viewProject {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border: 1px solid var(--color-white);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-white);
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-viewProject svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
}

.btn-project {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  /* border: 1px solid var(--color-white); */
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-white);
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-project:hover {
  background: var(--color-white);
  color: var(--color-bg);
}

.btn-project svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
}

.btn-project:hover svg {
  transform: translate(2px, -2px);
  transform: rotate(45deg);
}

.view-all-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.view-all-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border-soft);
  transform: translateY(-50%);
  z-index: 0;
}

.view-all-wrapper .btn-view-all {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border: 1px solid var(--color-white);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-white);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: var(--color-white);
  color: var(--color-bg);
}

.btn-view-all svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
}

.btn-view-all:hover svg {
  transform: translate(2px, -2px);
  transform: rotate(45deg);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  border-top: 1px solid var(--color-border-soft);
  padding: 2.5rem 0 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo .logo-image {
  width: 97px;
  height: auto;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-nav a {
  font-size: 14px;
  color: var(--color-white-dim);
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--color-white-dim);
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--color-white);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   CONTACT PAGE CSS
   ======================================== */

/* Contact Navbar */
.contact-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem 2.375rem;
  background: transparent;
  display: flex;
  align-items: center;
}

.contact-navbar .container-fluid {
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo .logo-image {
  width: 97px;
  height: 34.642px;
  object-fit: contain;
}

/* Contact Section */
.contact-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

.contact-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
  filter: grayscale(100%);
}

.contact-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(10, 10, 9, 0.6) 0%,
      rgba(10, 10, 9, 0.3) 40%,
      rgba(10, 10, 9, 0.85) 100%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 2;
  padding-top: 9rem;
  padding-bottom: 7rem;
  width: 100%;
}

/* Contact label */
.contact-label {
  font-size: 32px;
  color: var(--color-white-dim);
  margin: 0;
  padding-top: 0.5rem;
}

/* Heading */
.contact-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 1.25rem 0;
  line-height: 1.1;
}

/* Description */
.contact-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-white-dim);
  margin: 0 0 2.5rem 0;
  max-width: 420px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  background: rgba(245, 244, 240, 0.06);
  border: 1px solid rgba(245, 244, 240, 0.12);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-white);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  resize: none;
}

.form-input::placeholder {
  color: rgba(245, 244, 240, 0.35);
}

.form-input:focus {
  border-color: rgba(245, 244, 240, 0.35);
  background: rgba(245, 244, 240, 0.09);
}

.form-textarea {
  min-height: 160px;
}

.btn-get-in-touch {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--color-white);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-white);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 0.5rem;
  align-self: flex-start;
}

.btn-get-in-touch:hover {
  background: var(--color-white);
  color: var(--color-bg);
}

.btn-get-in-touch svg {
  transition: transform 0.3s ease;
}

.btn-get-in-touch:hover svg {
  transform: translateX(3px);
}

/* Explore Our Work */
.explore-work {
  padding: 5rem 0 4rem;
  border-top: 1px solid var(--color-border-soft);
}

.explore-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 1.5rem 0;
}

.explore-divider {
  height: 1px;
  background: var(--color-border-soft);
  margin-bottom: 2rem;
}

/* Explore grid: 4 equal columns */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.explore-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.explore-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a18;
}

.explore-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.explore-card:hover .explore-card-img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.explore-card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
}

.explore-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}

.explore-card-meta {
  font-size: 11px;
  color: var(--color-white-faint);
  margin: 0;
}

.explore-card-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 244, 240, 0.4);
  transition: color 0.25s ease, transform 0.25s ease;
}

.explore-card:hover .explore-card-arrow {
  color: var(--color-white);
  transform: translate(2px, -2px);
}

/* View more card */
.explore-card--more {
  border: 1px solid var(--color-border-soft);
  border-radius: 12px;
  padding: 1.5rem;
  justify-content: flex-end;
  min-height: 180px;
}

.explore-card-more-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.explore-card-more-text {
  font-size: 14px;
  color: var(--color-white-dim);
}

/* Contact page footer overrides */
.contact-page-footer {
  border-top: 1px solid var(--color-border-soft);
  background-color: #000000;
  padding-top: 2.5rem;
}

.footer-divider-top {
  display: none;
}

/* ── Contact Page Responsive ── */

@media (max-width: 992px) {
  .contact-inner {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }

  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-card--more {
    min-height: 120px;
  }
}

@media (max-width: 768px) {
  .contact-navbar {
    padding: 1.375rem 1.5rem;
  }

  .contact-inner {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .contact-label {
    display: none;
  }
}

@media (max-width: 576px) {
  .contact-navbar {
    padding: 1.25rem 1.25rem;
  }

  .contact-inner {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .explore-card--more {
    min-height: 80px;
  }

  .btn-get-in-touch {
    width: 100%;
    justify-content: center;
  }

  .contact-page-footer .footer-logo {
    margin-bottom: 1.25rem;
  }

  .footer-divider-top {
    display: block;
    height: 1px;
    background: var(--color-border-soft);
    margin-bottom: 2rem;
  }
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* ── About Navbar ── */
.about-page .ab-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.75rem 2.375rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-page .ab-navbar.menu-is-open {
  z-index: 1000;
}

.about-page .ab-navbar.menu-is-open a {
  visibility: hidden;
}

.about-page .ab-navbar .logo-image {
  width: 97px;
  height: 34.642px;
  object-fit: contain;
}

/* ── Hero ── */
/* ── Hero ── */
.about-page .ab-hero {
  position: relative;        /* ← needed for video positioning */
  overflow: hidden;          /* ← keeps video inside section bounds */
  padding: 7rem 0 5rem;
  border-bottom: 1px solid var(--color-border-soft);
}

/* Video */
.about-page .ab-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay so text stays readable */
.about-page .ab-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.about-page .ab-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin: 0 0 1.75rem;
}

.about-page .ab-hero-intro {
  font-size: 18px;
  color: rgba(245, 244, 240, 0.75);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 0 1.5rem;
}

.about-page .ab-hero-cols {
  margin-top: 55px;
  border-top: none;
}

.about-page .ab-hero-cols .row > [class*="col"] {
  padding-top: 0;
}

.about-page .ab-hero-col-text {
  font-size: 12px;
  color: rgba(245, 244, 240, 0.45);
  line-height: 1.8;
  margin: 0;
}
/* ── Clients ── */
.about-page .ab-clients {
  padding: 5rem 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.about-page .ab-clients-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 0.75rem;
}

.about-page .ab-clients-sub {
  font-size: 13px;
  color: var(--color-white-dim);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 3rem;
}

.about-page .ab-logo-track {
  overflow: hidden;
  width: 100%;
}

.about-page .ab-logo-strip {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ab-scroll-left 24s linear infinite;
}

.about-page .ab-logo-strip.reverse {
  animation: ab-scroll-right 24s linear infinite;
}

@keyframes ab-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes ab-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.about-page .ab-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 76px;
  padding: 0 2.5rem;
  border: 1px solid var(--color-border-soft);
  border-right: none;
  flex-shrink: 0;
}

.about-page .ab-logo-item:last-child {
  border-right: 1px solid var(--color-border-soft);
}

.about-page .ab-brand-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.45);
  white-space: nowrap;
}


/* ── Map ── */
/* ── Map ── */
.about-page .ab-map {
  position: relative;
  min-height: 500px;
  background: var(--color-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-border-soft);
}

/* dot grid shaped like US map */
.about-page .ab-dot-grid {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 75%;
  background-image: radial-gradient(circle, rgba(245, 244, 240, 0.15) 1px, transparent 1px);
  background-size: 14px 14px;
  -webkit-clip-path: url(#us-map-clip);
  clip-path: url(#us-map-clip);
  pointer-events: none;
}

.about-page .ab-map-navbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2.375rem;
  border-bottom: 1px solid var(--color-border-soft);
}

.about-page .ab-map-navbar .logo-image {
  width: 97px;
  height: 34.642px;
  object-fit: contain;
}

/* ── fix: dot ::after must NOT apply to navbar children ── */
.about-page .ab-map-navbar *::after,
.about-page .ab-map-navbar *::before {
  display: none !important;
}

/* ── City ── */
.about-page .ab-city {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  font-size: 11px;
  color: rgba(245, 244, 240, 0.6);
  white-space: nowrap;
  pointer-events: all;
  cursor: pointer;
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

/* dot — right side, visible by default */
.about-page .ab-city::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 244, 240, 0.6);
  flex-shrink: 0;
  opacity: 1;
  display: flex !important;             /* override navbar reset */
  transition: opacity 0.25s ease;
}

.about-page .ab-city::before {
  display: none !important;
}

/* arrow span — hidden by default */
.about-page .ab-city .ab-arrow {
  font-size: 11px;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.25s ease;
  line-height: 1;
}

/* ── Hover ── */
.about-page .ab-city:hover {
  color: #fff;
  border-color: rgba(245, 244, 240, 0.7);
  background: rgba(245, 244, 240, 0.05);
}

.about-page .ab-city:hover::after {
  opacity: 0;
}

.about-page .ab-city:hover .ab-arrow {
  opacity: 1;
}

/* ── City positions ── */
.about-page .ab-city-seattle    { top: 22%; left: 11%; }
.about-page .ab-city-sf         { top: 49%; left: 5%;  }
.about-page .ab-city-la         { top: 63%; left: 9%;  }
.about-page .ab-city-lasvegas   { top: 62%; left: 21%; }
.about-page .ab-city-chicago    { top: 25%; left: 52%; }
.about-page .ab-city-newyork    { top: 20%; left: 73%; }
.about-page .ab-city-philly     { top: 29%; left: 71%; }
.about-page .ab-city-austin     { top: 65%; left: 43%; }
.about-page .ab-city-neworleans { top: 73%; left: 53%; }
.about-page .ab-city-miami      { top: 73%; left: 71%; }

/* ── Map info ── */
.about-page .ab-map-info {
  position: relative;
  z-index: 10;
  margin-top: auto;
  padding: 3rem 2.375rem 3.5rem;
}

.about-page .ab-map-info h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 450;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 0.75rem;
}

.about-page .ab-map-info p {
  font-size: 13px;
  color: var(--color-white-dim);
  max-width: 400px;
  line-height: 1.7;
  margin: 0;
}
/* ── Team ── */
.about-page .ab-team-info {
  position: relative;
  z-index: 10;
  margin-top: auto;
  padding: 3rem 2.375rem 3.5rem;
}
.about-page .ab-team {
  border-bottom: 1px solid var(--color-border-soft);
}
.about-page .ab-team-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2.375rem;
  border-bottom: 1px solid var(--color-border-soft);
}
.about-page .ab-team-navbar .logo-image {
  width: 97px;
  height: 34.642px;
  object-fit: contain;
}

.about-page .ab-team-body {
  padding: 4rem 2.375rem 4rem;
  text-align: center;
}
.about-page .ab-team-title {
  /* font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
   margin: 0 0 0.75rem;  */
    font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 10;
  margin-top: 0;              /* ← remove auto */
  margin-bottom: 0;
  padding: 3rem 2.375rem 3.5rem;
  text-align: left;           /* ← left aligned */
  width: 100%;
}

.about-page .ab-team-sub {
  font-size: 13px;
  color: var(--color-white-dim);
  max-width: 380px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.about-page .ab-team-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.about-page .ab-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.about-page .ab-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  background: #1e1e1e;
  border: 1.5px solid var(--color-border-soft);
  flex-shrink: 0;
}

.about-page .ab-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

.about-page .ab-avatar-ph {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #252525 0%, #181818 100%);
  border: 1.5px solid var(--color-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-page .ab-avatar-ph svg {
  width: 44px;
  height: 44px;
  fill: rgba(245, 244, 240, 0.18);
}

.about-page .ab-member-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-white);
}

.about-page .ab-member-role {
  font-size: 10px;
  color: var(--color-white-faint);
}

.about-page .ab-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.about-page .ab-carousel-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-border-soft);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.about-page .ab-carousel-btn:hover {
  background: rgba(245, 244, 240, 0.08);
  border-color: rgba(245, 244, 240, 0.3);
}

.about-page .ab-carousel-btn svg {
  width: 14px;
  height: 14px;
}

.about-page .ab-carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.about-page .ab-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(245, 244, 240, 0.2);
  transition: background 0.2s;
}

.about-page .ab-dot.active {
  background: var(--color-white);
}

/* ── Testimonials ── */
.about-page .ab-testimonials {
  padding: 5rem 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.about-page .ab-testimonials-label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.about-page .ab-testimonials-desc {
  font-size: 13px;
  color: var(--color-white-dim);
  line-height: 1.75;
  margin: 0;
  max-width: 480px;
}

.about-page .ab-testimonials-desc p+p {
  margin-top: 1rem;
}

.about-page .ab-testimonials-header {
  margin-bottom: 3rem;
  padding-bottom: 0;
}

.about-page .ab-quote-card {
  border: 1px solid var(--color-border-soft);
  padding: 3rem 3.25rem;
}

.about-page .ab-quote-card+.ab-quote-card {
  border-top: none;
}

.about-page .ab-quote-tag {
  font-size: 11px;
  color: var(--color-white-faint);
  letter-spacing: 0.3px;
  margin: 0 0 1.75rem;
}

.about-page .ab-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 1.5rem;
}

.about-page .ab-quote-author {
  font-size: 11px;
  color: var(--color-white-faint);
  margin: 0;
}

.about-page .ab-view-all {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.about-page .ab-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-border-soft);
  border-radius: 999px;
  padding: 0.625rem 1.5rem;
  font-size: 13px;
  color: var(--color-white);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.about-page .ab-btn-outline:hover {
  background: rgba(245, 244, 240, 0.07);
  border-color: rgba(245, 244, 240, 0.3);
}

.about-page .ab-btn-outline svg {
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
}

/* ── Explore Work ── */
.about-page .ab-explore {
  padding: 5rem 0 4rem;
}

.about-page .ab-explore-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
}

.about-page .ab-work-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #141414;
  border-radius: 4px;
}

.about-page .ab-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.65);
  transition: transform 0.45s ease, filter 0.45s ease;
  display: block;
}

.about-page .ab-work-card:hover img {
  transform: scale(1.05);
  filter: grayscale(50%) brightness(0.75);
}

.about-page .ab-work-card-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c1c1c 0%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .ab-work-card-ph svg {
  width: 38px;
  height: 38px;
  fill: rgba(245, 244, 240, 0.07);
}

.about-page .ab-work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.125rem;
}

.about-page .ab-work-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
  margin: 0 0 2px;
}

.about-page .ab-work-meta {
  font-size: 10px;
  color: rgba(245, 244, 240, 0.5);
  margin: 0;
}

/* ── About Page Responsive ── */
@media (max-width: 992px) {
  .about-page .ab-hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .about-page .ab-team-row {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {

  .about-page .ab-navbar,
  .about-page .ab-map-navbar,
  .about-page .ab-team-navbar {
    padding: 1.375rem 1.5rem;
  }

  .about-page .ab-hero {
    padding: 7rem 0 3.5rem;
  }

  .about-page .ab-map-info {
    padding: 2rem 1.5rem 2.5rem;
  }

  .about-page .ab-team-body {
    padding: 3rem 1.5rem;
  }

  .about-page .ab-clients {
    padding: 3.5rem 0;
  }

  .about-page .ab-testimonials {
    padding: 3.5rem 0;
  }

  .about-page .ab-explore {
    padding: 3.5rem 0 3rem;
  }

  .about-page .ab-quote-card {
    padding: 2rem 1.75rem;
  }

  .about-page .ab-city {
    font-size: 9px;
  }

  .about-page .ab-avatar,
  .about-page .ab-avatar-ph {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 576px) {

  .about-page .ab-navbar,
  .about-page .ab-map-navbar,
  .about-page .ab-team-navbar {
    padding: 1.25rem 1.25rem;
  }

  .about-page .ab-hero {
    padding: 6rem 0 3rem;
  }

  .about-page .ab-city {
    display: none;
  }

  .about-page .ab-team-row {
    gap: 1rem;
  }

  .about-page .ab-avatar,
  .about-page .ab-avatar-ph {
    width: 68px;
    height: 68px;
  }

  .about-page .ab-member-name {
    font-size: 10px;
  }
}

/* ========================================
   PROJECT PAGE
   ======================================== */

/* ── Menu close button ── */
.project-page .menu-overlay.is-open .menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0;
}

/* ======================================== */
/*   CONTACT PAGE
   ======================================== */

/* Hide navbar logo when menu opens (prevents double logo) */
.contact-page .contact-navbar.menu-is-open .nav-logo {
  visibility: hidden;
}

/* Show menu close button */
.contact-page .menu-overlay.is-open .menu-close {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0;
}

/* ── Navbar ── */
.project-page .pw-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.75rem 2.375rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-soft);
  display: flex;
  align-items: center;
}


.project-page .pw-navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-page .pw-nav-logo .logo-image {
  width: 97px;
  height: 34.642px;
  object-fit: contain;
}

/* ── Page Header ── */
.project-page .pw-header {
  padding: 9rem 0 4rem;
}

.project-page .pw-page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-white);
  margin: 0 0 1.25rem;
}

.project-page .pw-page-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-white-dim);
  max-width: 420px;
  margin: 0;
}

/* ── Filter Bar ── */
.project-page .pw-filter-bar {
  padding-bottom: 0;
}

.project-page .pw-filter-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
}

.project-page .pw-filter-label {
  font-size: 14px;
  color: var(--color-white-faint);
  white-space: nowrap;
}

.project-page .pw-filter-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-white-faint);
  cursor: pointer;
  padding: 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.project-page .pw-filter-btn:hover,
.project-page .pw-filter-btn.active {
  color: var(--color-white);
}

.project-page .pw-filter-divider {
  height: 1px;
  background: var(--color-border-soft);
}

/* ── Projects Grid ── */
.project-page .pw-grid-section {
  padding: 0 0 5rem;
}

.project-page .pw-projects-grid {
  row-gap: 0;
}

/* ── Card ── */
.project-page .pw-card {
  display: block;
  text-decoration: none;
  color: var(--color-white);
  padding: 2rem;
  /* overflow must be visible so fanned images can peek outside */
  overflow: visible;
}

.project-page .pw-card:hover {
  color: var(--color-white);
}

/* ── Fan stack ── */
.project-page .pw-card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.25rem;
  /* overflow visible so back cards can fan outside */
  overflow: visible;
}

/* All three images share absolute fill */
.project-page .pw-card-img {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a18;
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.5s ease,
    opacity 0.5s ease;
  will-change: transform;
  transform-origin: bottom center;
}

.project-page .pw-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.5s ease;
}

/* Back cards — stacked flat behind front by default */
.project-page .pw-img-back2 {
  z-index: 1;
  opacity: 0.7;
}

.project-page .pw-img-back1 {
  z-index: 2;
  opacity: 0.85;
}

.project-page .pw-img-front {
  z-index: 3;
}

/* Fan effect on hover — spread left like a hand of cards */
.project-page .pw-card:hover .pw-img-back2 {
  transform: rotate(-18deg) translate(-28%, 4%) scale(0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.project-page .pw-card:hover .pw-img-back1 {
  transform: rotate(-9deg) translate(-14%, 2%) scale(0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.project-page .pw-card:hover .pw-img-front {
  transform: rotate(0deg) translate(0, -4%) scale(1.0);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
}

.project-page .pw-card:hover .pw-img-back2 img,
.project-page .pw-card:hover .pw-img-back1 img {
  filter: grayscale(40%) brightness(0.8);
}

.project-page .pw-card:hover .pw-img-front img {
  filter: grayscale(0%) brightness(1);
}

/* ── Card Info ── */
.project-page .pw-card-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
}

.project-page .pw-card-text {
  flex: 1;
}

.project-page .pw-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-white);
  margin: 0 0 0.375rem;
  letter-spacing: -0.01em;
}

.project-page .pw-card-meta {
  font-size: 11px;
  color: var(--color-white-faint);
  margin: 0;
}

.project-page .pw-card-arrow {
  flex-shrink: 0;
  color: rgba(245, 244, 240, 0.3);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-page .pw-card:hover .pw-card-arrow {
  color: var(--color-white);
  transform: translate(3px, -3px);
}

.dividerProjects {
  margin-top: 3rem;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .project-page .pw-navbar {
    padding: 1.375rem 1.5rem;
  }

  .project-page .pw-header {
    padding: 7rem 0 3rem;
  }

  .project-page .pw-filter-row {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .project-page .pw-navbar {
    padding: 1.25rem 1.5rem;
  }

  .project-page .pw-header {
    padding: 6rem 0 2.5rem;
  }

  .project-page .pw-card {
    padding: 1.5rem;
  }

  .project-page .pw-filter-row {
    gap: 1rem;
  }

  .project-page .pw-filter-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 576px) {
  .project-page .pw-navbar {
    padding: 1.25rem 1.25rem;
  }

  .project-page .pw-header {
    padding: 5.5rem 0 2rem;
  }

  .project-page .pw-filter-row {
    gap: 0.875rem;
  }

  .project-page .pw-filter-btn {
    font-size: 13px;
  }

  .project-page .pw-card {
    padding: 1.25rem;
  }

  .project-page .pw-card-title {
    font-size: 13px;
  }

  /* Simplify fan on small screens */
  .project-page .pw-card:hover .pw-img-back2 {
    transform: rotate(-7deg) translate(-12px, 8px) scale(0.95);
  }

  .project-page .pw-card:hover .pw-img-back1 {
    transform: rotate(-3deg) translate(-5px, 4px) scale(0.97);
  }
}

/* ========================================
   MENU OVERLAY
   ======================================== */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  /* background: #3a3a38; */
  display: flex;
  flex-direction: column;
  padding: 1.75rem 2.375rem 3rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.00) 100%), rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(11.949999809265137px);
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Menu Header */
.menu-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: auto;
}

.menu-logo {
  width: 97px;
  height: 34.642px;
  flex-shrink: 0;
}

.menu-logo .logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-contact {
  display: flex;
  gap: 3rem;
  padding-left: 1rem;
}

.menu-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.menu-contact-label {
  font-size: 13px;
  color: var(--color-white);
  margin: 0;
  font-weight: 400;
}

.menu-contact-info {
  font-size: 13px;
  color: rgba(245, 244, 240, 0.5);
  margin: 0;
}

.menu-contact-info a {
  color: inherit;
}

.menu-contact-info a:hover {
  color: var(--color-white);
}

.menu-close {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0;
}

.menu-overlay.is-open .menu-close {
  display: none;
}

/* Menu Navigation */
.menu-nav {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.menu-nav-item {
  display: grid;
  grid-template-columns: 160px 1fr 40px;
  align-items: center;
  padding: 0.2rem 0;
  border-top: 1px solid rgba(245, 244, 240, 0.1);
  color: rgba(245, 244, 240, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
}

.menu-nav-item:last-child {
  border-bottom: 1px solid rgba(245, 244, 240, 0.1);
}

.menu-nav-item:hover {
  color: var(--color-white);
}

.menu-nav-number {
  font-size: 38px;
  font-family: var(--font-display);
  font-weight: 400;
}

.menu-nav-name {
  font-size: 38px;
  /*clamp(2rem, 4vw, 3rem)*/
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.menu-nav-arrow {
  justify-self: end;
  transition: transform 0.25s ease;
}

.menu-nav-item:hover .menu-nav-arrow {
  transform: translate(2px, -2px);
}

/* Staggered entrance for nav items */
.menu-nav-item {
  opacity: 0;
  transform: translateY(14px);
}

.menu-overlay.is-open .menu-nav-item {
  animation: menuNavIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.menu-overlay.is-open .menu-nav-item:nth-child(1) { animation-delay: 0.12s; }
.menu-overlay.is-open .menu-nav-item:nth-child(2) { animation-delay: 0.19s; }
.menu-overlay.is-open .menu-nav-item:nth-child(3) { animation-delay: 0.26s; }
.menu-overlay.is-open .menu-nav-item:nth-child(4) { animation-delay: 0.33s; }

@keyframes menuNavIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets & Small Desktops (max-width: 992px) */
@media (max-width: 992px) {
  .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .navbar {
    padding: 1.375rem 1.5rem;
  }

  .hero-content {
    padding-top: 2.75rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  }

  .hero-footer {
    padding-bottom: 1.75rem;
  }

  .category-item {
    grid-template-columns: 40px 1fr 28px;
    padding: 1.375rem 0;
  }

  .category-name {
    text-align: left;
    padding-left: 0.75rem;
  }

  .our-work {
    padding: 4.375rem 0 0;
  }

  .quote-wrapper {
    padding: 4.375rem 0;
  }

  /* quote area */
  .quote-section {
    margin-top: 1.75rem;
  }

  .select-projects {
    padding: 2.5rem 0;
    background-color: #000;
  }

  .project-card {
    padding: 2.5rem 0;
     border-bottom: 0px solid var(--color-border-soft);
  }
  .project-card-First{
    padding: 0 0 2.5rem 0 !important;
  }


  .project-meta {
    margin-bottom: 1rem;
    color: var(--color-white-faint);
  }

  .project-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-description {
    max-width: 100%;
  }
}

/* Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
  .container-fluid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar {
    position: fixed;
    z-index: 100;
    padding: 1rem 0rem;
    width: 100%;
  }

  .navbar-logo-mobile {
    display: block;
  }

  .hero-footer-top {
    display: none;
  }

  .hero-content {
    padding-top: 1.5rem;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-footer {
    padding-bottom: 2rem;
  }

  .hero-footer-text {
    font-size: 14px;
  }

  /* .divider {
    margin: 1.25rem 0;
  } */

  .logo {
    font-size: 1.375rem;
  }

  .marquee-content {
    font-size: 1.125rem;
    gap: 1.75rem;
    padding-right: 1.75rem;
  }

  .marquee-track {
    gap: 1.75rem;
    animation: marquee-scroll 2s linear infinite;
  }

  .category-number {
    font-size: 1rem;
    color: #D9D9D9;
  }

  .category-name {
    font-size: 1rem;
    margin-left: 0%;
    padding-left: 0px;
    color: #D9D9D9;
  }

  .quote-text {
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 0 0 .75rem;

  }

  .project-title {
    font-size: 1.125rem;
    margin: 0 0px 0.5rem 0;
    transform: translateX(0);
    line-height: 25px;
  }

  .project-image {
    aspect-ratio: 16/9;
  }

  .footer-logo {
    font-size: 1.75rem;
  }

  .testimonial-slider {
    position: relative;
    min-height: 0px;
  }

  .project-content {
    margin-left: 0px;
  }
}

/* Extra Small Devices (max-width: 400px) */
@media (max-width: 400px) {
  /* .hero-title {
    font-size: 1.625rem;
  } */

  .btn-contact,
  .btn-project,
  .btn-view-all {
    font-size: 0.8125rem;
    padding: 0.5rem 0.125rem;
  }
}

/* ========================================
   CATEGORY EXPERTISE PANEL
   ======================================== */

.category-expertise-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
  opacity: 0;
  border-top: 1px solid var(--color-border-soft);
}

.category-expertise-panel.is-open {
  max-height: 520px;
  opacity: 1;
}

.expertise-panel-inner {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 0 2rem;
  align-items: flex-start;
}

/* Left panel */
.expertise-panel-left {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-panel-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0;
}

.expertise-panel-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-white-dim);
  margin: 0;
}

.expertise-panel-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(245, 244, 240, 0.35);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--color-white);
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  white-space: nowrap;
}

.expertise-panel-btn:hover {
  background: var(--color-white);
  color: var(--color-bg);
}

/* Cards wrap */
.expertise-panel-cards-wrap {
  flex: 1;
  overflow: hidden;
  height: 460px;
  position: relative;
}

/* Fade edges */
.expertise-panel-cards-wrap::before,
.expertise-panel-cards-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.expertise-panel-cards-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.expertise-panel-cards-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

/* Scrolling track */
.expertise-panel-cards {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  width: max-content;
  transform: translateX(0);
  will-change: transform;
}

/* Individual card items */
.ec-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ec-label {
  font-size: 11px;
  color: var(--color-white-dim);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ec-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a18;
  flex-shrink: 0;
}

.ec-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ec-item:hover .ec-img-wrap img {
  transform: scale(1.04);
}

/* ── Expertise panel responsive ── */
@media (max-width: 992px) {
  .expertise-panel-inner {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0 1.5rem;
  }

  .expertise-panel-left {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
  }

  .expertise-panel-heading {
    font-size: 1.375rem;
  }

  .expertise-panel-desc {
    display: none;
  }

  .expertise-panel-cards-wrap {
    height: 320px;
  }

  .category-expertise-panel.is-open {
    max-height: 460px;
  }
}

@media (max-width: 576px) {
  .expertise-panel-cards-wrap {
    height: 260px;
  }

  .category-expertise-panel.is-open {
    max-height: 380px;
  }

  .expertise-panel-left {
    gap: 0.75rem;
  }
}

/* Menu Overlay — Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .menu-overlay {
    padding: 1.375rem 1.5rem 2.5rem;
  }

  .menu-header {
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
  }

  .menu-contact {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .menu-nav-item {
    grid-template-columns: 100px 1fr 32px;
    padding: 1.25rem 0;
  }

  .menu-nav-number {
    font-size: 15px;
  }
}

/* Menu Overlay — Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .menu-overlay {
    padding: 1.25rem 1.25rem 2rem;
  }

  .menu-header {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 3.25rem;
    align-items: center;
  }

  .menu-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-close {
    grid-column: 2;
    grid-row: 1;
    margin-left: auto;
  }

  .menu-contact {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0;
  }

  .menu-nav-item {
    grid-template-columns: 50px 1fr 28px;
    padding: 1rem 0;
  }

  .menu-nav-name {
    font-size: 1.75rem;
  }

  .menu-nav-number {
    font-size: 13px;
  }
}