.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-rule {
  width: 40px;
  height: 2px;
  background: #1a1a1a;
  margin: 0 auto;
}

.manifesto {
  padding: 120px 32px;
  margin: 0 auto;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.manifesto-heading span {
  color: #ccc;
}

.manifesto-right {
  padding-top: 8px;
}

.manifesto-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  margin-bottom: 24px;
}

.manifesto-closer {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
  margin-top: 8px;
}

.our-work {
  background: #f2f2f2;
  padding: 100px 32px;
}

.our-work-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
  border-radius: 5px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
  display: block;
  border-radius: 5px;
}

.project-card:hover img {
  transform: scale(1.04);
  filter: grayscale(60%);
}

.project-overlay {
  border-radius: 3px;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.1) 60%
  );
  opacity: 0.7;
  transition: opacity 0.4s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  transform: translateY(8px);
  transition: transform 0.4s;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.project-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}

.pc-1 {
  grid-column: span 7;
  aspect-ratio: 16/10;
}

.pc-2 {
  grid-column: span 5;
  aspect-ratio: 16/10;
}

.pc-3 {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.pc-4 {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.pc-5 {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.testimonials {
  padding: 100px 32px;
}

.testimonials-inner {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.testimonial-card {
  border-radius: 4px;
  border: 1px solid #1a1a1a;
  padding: 48px 40px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.03em;
}

.testimonial-role {
  font-size: 11px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.extra-testimonials {
  display: none;
}

.extra-testimonials.open {
  display: contents;
}

.view-more-btn {
  display: inline-block;
  text-align: center;
  margin: 40px auto 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: none;
  border: 1px solid #1a1a1a;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.3s;
}

.view-more-btn:hover {
  background: #1a1a1a;
  color: #fff !important;
}

.cta-strip {
  background: #2c2c2c;
  padding: 80px 32px;
  text-align: center;
}

.cta-strip-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.cta-strip-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cta-strip-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  margin-bottom: 40px;
}

.cta-strip-btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-strip-btn:hover {
  background: #fff;
  color: #1a1a1a;
}

footer {
  background: #1a1a1a;
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-logo {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.footer-address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
  font-weight: 300;
}

.footer-right {
  text-align: right;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #fff;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  z-index: 99;
  padding: 24px 32px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

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

.mobile-menu a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.work-slider {
  max-width: 90%;
  margin-inline: auto;
}

.work-slide {
  padding: 0 0px;
  margin-inline: 7.5px;
  cursor: pointer;
  position: relative;
  outline: none;
}

.work-slide-inner {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.work-slide-inner img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.work-slide:hover .work-slide-inner img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.work-slide:hover .zoom-icon {
  opacity: 1;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.slide-caption h4 {
  color: white;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.slide-caption p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slick-prev,
.slick-next {
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #dddddd;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
}

.slick-prev {
  left: -16px;
}

.slick-next {
  right: -16px;
}

.slick-prev:hover,
.slick-next:hover {
  background: #2c2c2c;
  border-color: #2c2c2c;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 16px;
  color: #1a1a1a;
  opacity: 1;
  transition: color 0.3s ease;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: white;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li {
  margin: 0 3px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #dddddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.slick-dots li.slick-active button:before {
  color: #1a1a1a;
  font-size: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  overflow: hidden;
  cursor: zoom-in;
  user-select: none;
}

.lb-img-wrap.zoomed {
  cursor: zoom-out;
  overflow: visible;
}

.lb-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  transition: transform 0.35s ease;
  transform-origin: center center;
  pointer-events: none;
}

.lb-img-wrap.zoomed img {
  transform: scale(2.5);
  max-width: none;
  max-height: none;
}

.testimonials-slider {
  max-width: 90%;
  margin-inline: auto;
}

.testimonial-slide {
  margin-inline: 15px;
}

.testimonial-quote {
  font-size: 48px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: #1a1a1a;
}

.testimonial-prev {
  left: -20px;
}

.testimonial-next {
  right: -20px;
}

.testimonials-slider .slick-dots {
  bottom: -50px;
  text-align: center;
}

.testimonials-slider .slick-dots li button:before {
  font-size: 12px;
  color: #ccc;
  opacity: 1;
}

.testimonials-slider .slick-dots li.slick-active button:before {
  color: #1a1a1a;
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-socials {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

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

  .hero-sidebar {
    display: none;
  }

  .hero-content {
    padding: 40px 28px;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .pc-1,
  .pc-2,
  .pc-3,
  .pc-4,
  .pc-5 {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .pc-1 img,
  .pc-2 img,
  .pc-3 img,
  .pc-4 img,
  .pc-5 img {
    border-radius: 3px;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .work-slide-inner img {
    height: 340px;
  }
}

@media (min-width: 768px) {
  .slide-caption {
    padding: 16px;
  }
}

@media (min-width: 768px) {
  .slide-caption h4 {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .slide-caption p {
    font-size: 11px;
  }
}

@media (min-width: 768px) {
  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 768px) {
  .slick-prev {
    left: -20px;
  }

  .slick-next {
    right: -20px;
  }
}

@media (min-width: 768px) {
  .slick-prev:before,
  .slick-next:before {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .testimonial-prev {
    left: -10px;
  }

  .testimonial-next {
    right: -10px;
  }

  .testimonial-prev,
  .testimonial-next {
    width: 36px;
    height: 36px;
  }
}
