@font-face {
  font-family: 'SF Pro Display';
  src: url('font/SF-Pro-Display-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('font/SF-Pro-Display-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('font/SF-Pro-Display-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('font/SF-Pro-Display-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('font/SF-Pro-Display-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('font/SF-Pro-Display-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --color-page: #fff;
  --color-text: #10131a;
  --color-muted: #6e7686;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f8fc;
  --color-dark: #10131a;
  --color-border: rgba(16, 23, 40, 0.08);
  --color-border-strong: rgba(16, 23, 40, 0.16);
  --color-cta: #111316;
  --radius-lg: 28px;
  --radius-xl: 44px;
  --shadow-soft: 0 28px 60px rgba(16, 24, 40, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-page);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
/* Sticky Header (global) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 20px 0 18px;
  color: var(--color-dark);
  background: #fff;
  box-shadow: 0 10px 32px rgba(16, 23, 40, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 23, 40, 0.08);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  color: var(--color-dark);
}

.brand sup {
  margin-left: 6px;
  font-size: 0.55rem;
  letter-spacing: normal;
  position: relative;
  top: -0.45em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: flex-start;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown .caret {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-top: 2px;
  opacity: 0.7;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 6px;
  left: 0;
  background: #fff;
  color: var(--color-dark);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
  padding: 10px;
  min-width: 220px;
  display: grid;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: inherit;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.04);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
  color: var(--color-dark);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
  color: var(--color-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.header-cta:hover {
  opacity: 1;
}

.header-cta span {
  margin-left: 6px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Selector */
.language-selector {
  background: #fff;
  border: 1px solid rgba(16, 23, 40, 0.14);
  border-radius: 6px;
  color: var(--color-dark);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.language-selector:hover {
  background: #f8f9fc;
  border-color: rgba(16, 23, 40, 0.22);
}

.language-selector:focus {
  border-color: rgba(16, 23, 40, 0.32);
  box-shadow: 0 0 0 2px rgba(16, 23, 40, 0.12);
}

.language-selector option {
  background: #fff;
  color: var(--color-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 24, 0) 0%, rgba(9, 15, 24, 0.1) 45%, rgba(9, 15, 24, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 118px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-text {
  max-width: 440px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.86rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.description {
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 48px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.dot.active {
  transform: scale(1.4);
  background: #fff;
}

/* Partners */
.partners {
  background: var(--color-surface);
  padding: 48px 0;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: none;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: inline-flex;
  gap: 48px;
  align-items: center;
  min-width: max-content;
  animation: logos-scroll 18s linear infinite;
}

.logo-placeholder {
  font-weight: 600;
  opacity: 0.6;
  color: rgba(16, 24, 40, 0.65);
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: #fff;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* About */
.about {
  padding: 120px 0 90px;
  background-color: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  padding: 80px;
  background: #f5f7fb;
  border-radius: 44px;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.05);
}

.about-media {
  position: relative;
}

.about-image {
  border-radius: 36px;
  width: 100%;
  height: 700px;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.badge {
  position: absolute;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-dark);
  box-shadow: 0 20px 32px rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.badge-top {
  top: 28px;
  left: 32px;
}

.badge-middle {
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
}

.badge-bottom {
  bottom: 28px;
  left: 22px;
}

.section-label {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(16, 24, 40, 0.5);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-copy h2 {
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  line-height: 1.23;
  margin: 0 0 28px;
}

.lead {
  margin: 0 0 40px;
  color: #596072;
  line-height: 1.8;
  max-width: 520px;
}

.stats {
  display: flex;
  gap: 24px;
  margin-bottom: 34px;
}

.stat-card {
  flex: 1;
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(16, 24, 40, 0.05);
}

.stat-value {
  font-size: 2.1rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  padding: 14px 28px;
  font-weight: 500;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background-color: #fff;
}

.ghost-button:hover {
  border-color: rgba(10, 94, 232, 0.35);
  background: rgba(10, 94, 232, 0.08);
}

/* Projects */
.projects {
  padding: 120px 0;
  margin-top: -100px;
  background: #fff;
}

.projects-inner {
  display: grid;
  gap: 40px;
  text-align: center;
}

.projects-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.24;
}

.filter-pills {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 12px;
}

.pill {
  border: 1px solid rgba(16, 24, 40, 0.12);
  padding: 12px 24px;
  border-radius: 999px;
  background: #fff;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.pill.active {
  background: var(--color-dark);
  color: #fff;
  border-color: transparent;
}

.pill:hover:not(.active) {
  background: rgba(16, 24, 40, 0.06);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.project-card {
  background: transparent;
  border-radius: 36px;
  display: grid;
  gap: 20px;
}

.project-media {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.14);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.project-media img {
  height: clamp(240px, 30vw, 360px);
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 26px rgba(15, 23, 42, 0.15);
}

.project-card:hover .project-media {
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  transform: translateY(-4px);
}

.project-card:hover .project-media img {
  transform: scale(1.05);
}

.project-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 0 8px;
}

.project-content h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: var(--color-text);
}

.project-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.project-date {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 26px rgba(17, 19, 21, 0.18);
}

/* CTA Highlight */
.cta-highlight {
  padding: 90px 0;
  background-color: #fff;
}

.highlight-inner {
  position: relative;
  color: #fff;
  border-radius: 44px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background: #000;
  width: 100%;
}

.highlight-media {
  position: absolute;
  inset: 0;
}

.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.highlight-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0) 100%);
}

.highlight-copy {
  position: relative;
  z-index: 1;
  padding: 64px 80px;
  max-width: 520px;
  display: grid;
  gap: 20px;
}

.highlight-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  line-height: 1.18;
}

.highlight-copy p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.primary-button.light {
  background: #fff;
  color: var(--color-text);
}

.primary-button.light:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Process */
.process {
  padding: 110px 0 130px;
  background-color: #fff;
}

.process-inner {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  padding: 76px;
  box-shadow: var(--shadow-soft);
  align-items: center;
  position: relative;
}

.process-copy h2 {
  margin: 0 0 36px;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.process-cta {
  position: absolute;
  top: 36px;
  right: 36px;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  display: grid;
  gap: 20px;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  padding: 24px 28px;
  border-radius: 26px;
  background: var(--color-surface-alt);
}

.step-number {
  font-size: 1.9rem;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.55);
}

.step-list h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.step-list p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.process-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: #070808;
  color: #fff;
  padding: 88px 0 34px;
  border-radius: 48px;  
  width: 93%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #fff;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #14181d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links h4,
.footer-newsletter h4 {
  margin: 0 0 18px;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 999px;
  align-items: center;
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  padding: 10px 16px;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

.about-inner,
.process-inner,
.highlight-inner {
  grid-template-columns: 1fr;
  padding: 48px;
}

  .about-media,
  .process-media {
    order: -1;
  }

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

@media (max-width: 768px) {
  .site-header {
    position: static;
    padding: 24px 0 16px;
  }

  .header-inner {
    background: var(--color-dark);
    border-radius: 24px;
    border: none;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .language-selector {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  .hero {
    min-height: 70vh;
    border-radius: 0 0 40px 40px;
  }

  .hero-content {
    padding: 110px 0 64px;
  }

  .logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-inner,
  .process-inner,
  .highlight-inner {
    padding: 36px;
  }

  .stats {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(92vw, 440px);
  }

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

  .header-cta,
  .ghost-button,
  .primary-button {
    width: 100%;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

  .newsletter-form button {
    width: 100%;
  }

  .highlight-copy {
    padding: 40px;
  }
}
.footer-brand .brand-mark {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.24em;
}

.footer-brand sup {
  font-size: 0.6rem;
  margin-left: 6px;
  position: relative;
  top: -0.5em;
}
.primary-button.process-cta {
  background: var(--color-dark);
  color: #fff;
  padding: 12px 24px;
  gap: 8px;
  box-shadow: 0 18px 32px rgba(17, 19, 21, 0.2);
}

.primary-button.process-cta:hover {
  box-shadow: 0 20px 40px rgba(17, 19, 21, 0.28);
}

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

/* About Header */
.about-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  padding: 20px 0 18px;
}

.about-header .header-inner {
  border-bottom: 1px solid rgba(16, 23, 40, 0.08);
}

.about-header .brand,
.about-header .main-nav a,
.about-header .btn-contact {
  color: var(--color-dark);
}
.about-header .dropdown-menu {
  box-shadow: 0 16px 38px rgba(16, 23, 40, 0.12);
}

.main-nav a.active {
  font-weight: 600;
  position: relative;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}

.btn-contact {
  padding: 10px 24px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-contact:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

/* About Hero Section */
.about-hero {
  background: #fff;
  padding: 40px 0 60px;
}

.breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.about-hero-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}

.about-hero-title h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.about-hero-description {
  padding-top: 8px;
}

.about-hero-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

.about-hero-images {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 24px;
  align-items: start;
}

.hero-image-left img,
.hero-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-image-left img {
  aspect-ratio: 3/4;
}

.hero-image-right img {
  aspect-ratio: 16/9;
}

/* Story Section */
.story-section {
  background: #fff;
  padding: 0 0 60px;
}

.story-images {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 24px;
  margin-bottom: 56px;
}

.story-image-left img,
.story-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.story-image-left img {
  aspect-ratio: 3/4;
}

.story-image-right img {
  aspect-ratio: 16/9;
}

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

.story-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
  padding-top: 4px;
}

.story-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-text {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--color-dark);
  margin: 0;
  font-weight: 400;
}

/* Stats Section */
.stats-section {
  background: #fff;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* Impact Section */
.impact-section {
  background: #fff;
  padding: 80px 0 110px;
}

.impact-content {
  
  border-radius: 44px;
  padding: 52px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 26px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.impact-header {
  margin-bottom: 0;
}

.impact-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: #777;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.impact-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.22;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 820px;
}

.impact-left {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}

.impact-image {
  width: 100%;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: inherit;
}

.impact-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.impact-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0a0a0a;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-content h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0c0c0c;
  line-height: 1.3;
}

.feature-content p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #4c515d;
  margin: 0;
}

.impact-cta {
  margin-top: 8px;
}

.btn-projects {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #0b0b0b;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.01em;
}

.btn-projects:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

/* Projects Timeline Section */
.projects-timeline {
  background: #fff;
  padding: 90px 0;
}

.timeline-header h2 {
  font-size: clamp(2.1rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 40px;
  text-align: center;
  letter-spacing: -0.01em;
}

.timeline-intro {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  margin-bottom: 44px;
  align-items: start;
}

.timeline-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: #7a7a7a;
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 4px;
}

.timeline-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1c1c1c;
  margin: 0;
}

.timeline-filters {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  background: #f1f2f5;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0a0a0a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-btn:hover {
  background: #e6e8ed;
  border-color: #c8c8c8;
  transform: translateY(-1px);
}

.filter-btn.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.projects-list {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 64px;
  box-shadow: none;
  column-count: 2;
  column-gap: 64px;
}

.project-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  break-inside: avoid;
  page-break-inside: avoid;
}

.project-item.hidden {
  display: none;
}

.project-bullet {
  flex-shrink: 0;
  color: var(--color-dark);
  font-weight: 400;
  font-size: 1rem;
}

.project-name {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text);
  font-weight: 400;
}

/* Projects Gallery */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f5f5f5;
}

.gallery-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 40px;
  border-top: 2px dotted rgba(0, 0, 0, 0.15);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.5fr;
  gap: 80px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-brand {
  max-width: 240px;
  padding-left: 20px;
}

.brand-footer {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.brand-footer sup {
  font-size: 0.45rem;
  margin-left: 3px;
  position: relative;
  top: -0.5em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
  font-style: italic;
  line-height: 1.4;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 0.75rem;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h3 {
  font-size: 0.65rem;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col ul li {
  margin-bottom: 0;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-newsletter h3 {
  font-size: 0.7rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #fff;
  font-size: 0.75rem;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
  padding: 10px 20px;
  background: #fff;
  color: #0a0a0a;
  border: none;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
  .about-hero-header {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .about-hero-title h1 {
    font-size: 2.8rem;
  }

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

  .story-images {
    grid-template-columns: 1fr 1.5fr;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .impact-content {
    padding: 48px;
  }

  .impact-left {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .impact-title {
    font-size: 2.2rem;
  }

  .impact-right {
    gap: 18px;
  }

  .impact-features {
    gap: 16px;
  }

  .timeline-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer-newsletter {
    grid-column: span 2;
  }

  .projects-list {
    column-count: 1;
    padding: 0;
  }

  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .about-hero-header {
    gap: 32px;
    margin-bottom: 40px;
  }

  .about-hero-title h1 {
    font-size: 2.2rem;
  }

  .about-hero-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-section {
    padding: 0 0 60px;
  }

  .story-images {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .story-content {
    gap: 24px;
  }

  .story-text {
    font-size: 1.1rem;
  }

  .stats-grid {
    gap: 32px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .impact-content {
    padding: 40px 32px;
  }

  .impact-left {
    grid-template-columns: 1fr;
  }

  .impact-title {
    font-size: 1.8rem;
  }

  .timeline-header h2 {
    font-size: 1.5rem;
  }

  .timeline-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-filters {
    justify-content: flex-start;
  }

  .timeline-header h2 {
    font-size: 1.6rem;
  }

  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-image img {
    height: 180px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-newsletter {
    grid-column: span 1;
  }

  .newsletter-form {
    flex-direction: row;
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-hero-title h1 {
    font-size: 1.85rem;
  }

  .about-hero-description p {
    font-size: 0.95rem;
  }

  .story-text {
    font-size: 1rem;
  }

  .impact-content {
    padding: 32px 24px;
  }

  .impact-section,
  .projects-timeline {
    padding: 60px 0;
  }

  .timeline-header h2 {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }

  .projects-list {
    column-count: 1;
    padding: 0;
  }

  .timeline-filters {
    gap: 8px;
  }

  .filter-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

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

  .gallery-image img {
    height: 200px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-newsletter {
    grid-column: span 1;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

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

.contact-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  padding: 20px 0 18px;
}

.contact-header .header-inner {
  border-bottom: 1px solid rgba(16, 23, 40, 0.08);
}

.contact-header .brand,
.contact-header .main-nav a,
.contact-header .btn-contact {
  color: var(--color-dark);
}
.contact-header .dropdown-menu {
  box-shadow: 0 16px 38px rgba(16, 23, 40, 0.12);
}

.contact-hero {
  background: #fff;
  padding: 80px 0 40px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.contact-hero-left h1 {
  font-size: clamp(3rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}

.contact-hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-hero-right p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}

.contact-socials {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.contact-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.contact-socials a:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.08);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  background: #f9fafc;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 110px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.contact-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
}

.contact-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.contact-form-section {
  background: #fff;
  padding: 40px 0 90px;
}

.contact-form-wrapper {
  background: #f7f8fc;
  border: 1px solid var(--color-border);
  border-radius: 44px;
  padding: 52px;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
}

.contact-form-head {
  text-align: center;
  margin-bottom: 28px;
}

.contact-form-head h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: -0.01em;
}

.contact-form-head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-image {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(16, 23, 40, 0.3);
  box-shadow: 0 0 0 4px rgba(16, 23, 40, 0.06);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.consent-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.consent-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #000;
}

.primary-button.dark {
  width: 100%;
  background: #000;
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.primary-button.dark:hover {
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 72px 0 32px;
  }

  .contact-hero-left h1 {
    font-size: 2.4rem;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 36px 26px;
    border-radius: 32px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .contact-hero-left h1 {
    font-size: 2rem;
  }

  .contact-socials a {
    width: 34px;
    height: 34px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 28px 18px;
  }
}

/* ========================================
   PROJECTS PAGE STYLES
   ======================================== */

/* Projects Header */
.projects-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  padding: 20px 0 18px;
}

.projects-header .header-inner {
  border-bottom: 1px solid rgba(16, 23, 40, 0.08);
}

.projects-header .brand,
.projects-header .main-nav a,
.projects-header .btn-contact {
  color: var(--color-dark);
}
.projects-header .dropdown-menu {
  box-shadow: 0 16px 38px rgba(16, 23, 40, 0.12);
}

/* Projects Hero Section */
.projects-hero {
  background: #fff;
  padding: 72px 0 96px;
}

.projects-hero .container {
  width: min(1100px, 92vw);
}

.projects-hero .breadcrumb {
  margin-bottom: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.projects-hero-title {
  font-size: 2.8rem;
  line-height: 1.12;
  font-weight: 300;
  margin: 0 0 36px 0;
  margin-top: 50px;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  max-width: 100%;
}

.projects-hero-bottom {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 64px;
  align-items: start;
}

.projects-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--color-muted);
  font-weight: 600;
  padding-top: 4px;
  text-transform: uppercase;
}

.projects-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0;
  max-width: 620px;
}

/* Responsive Styles for Projects Page */
@media (max-width: 1024px) {
  .projects-hero-bottom {
    gap: 48px;
  }

  .projects-hero-title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .projects-hero-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .projects-hero-title {
    font-size: 2.2rem;
    margin-bottom: 28px;
  }
}

@media (max-width: 520px) {
  .projects-hero {
    padding: 32px 0 40px;
  }

  .projects-hero-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .projects-description {
    font-size: 0.95rem;
  }
}

/* ========================================
   PROJECT DETAIL PAGE STYLES
   ======================================== */

/* Project Detail Header */
.project-detail-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  padding: 20px 0 18px;
}

.project-detail-header .header-inner {
  border-bottom: 1px solid rgba(16, 23, 40, 0.08);
}

.project-detail-header .brand,
.project-detail-header .main-nav a,
.project-detail-header .btn-contact {
  color: var(--color-dark);
}
.project-detail-header .dropdown-menu {
  box-shadow: 0 16px 38px rgba(16, 23, 40, 0.12);
}

/* Project Detail Hero */
.project-detail-hero {
  background: #fff;
  padding: 40px 0 50px;
}

.breadcrumb-detail {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.project-detail-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

/* Project Images Section */
.project-images-section {
  background: #fff;
  padding: 0 0 80px;
}

.project-images-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.project-main-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.project-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-name-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.project-info-side {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.project-info-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-info-cards-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: -40px;
}

.info-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.info-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-dark);
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 1px;
  font-weight: 500;
}

.info-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* Project Description Section */
.project-description-section {
  background: #fff;
  padding: 0 0 80px;
}

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

.description-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
  padding-top: 4px;
}

.description-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.description-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-dark);
  margin: 0;
  font-weight: 400;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--color-dark);
  color: #fff;
  border-radius: 32px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-catalog:hover {
  background: #000;
  transform: translateX(4px);
}

.btn-catalog svg {
  width: 16px;
  height: 16px;
}

/* Project Highlight Section */
.project-highlight-section {
  background: #F8F8F8;
  padding: 80px 0;
  border-radius: 30px;
  margin: 50px;
}

.highlight-wrapper {
  background: #FAFAFA;
  border-radius: 32px;
  padding: 60px;
}

.highlight-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 32px;
}

.highlight-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 48px;
  max-width: 800px;
  letter-spacing: -0.02em;
}

.highlight-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.highlight-text {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  margin: 0;
  font-weight: 400;
}

.highlight-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid #E5E5E5;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Project Gallery Section */
.project-gallery-section {
  background: #fff;
  padding: 90px 0 110px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 42px;
}

.gallery-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.gallery-title {
  font-size: 2.6rem;
  line-height: 1.22;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
  letter-spacing: -0.02em;
}

.gallery-main {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0 auto 32px;
  max-width: 1100px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.35s ease;
}

.gallery-main:hover .gallery-main-img {
  transform: scale(1.01);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.35s forwards ease;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #222;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.gallery-nav.prev {
  left: 24px;
}

.gallery-nav.next {
  right: 24px;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.thumbnail-btn {
  border: 1px solid #e7e9ee;
  background: #fff;
  border-radius: 16px;
  padding: 6px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
  display: block;
}

.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.thumbnail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.thumbnail-btn.active {
  border-color: #1a1d22;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}


/* Responsive Styles for Project Detail Page */
@media (max-width: 1024px) {
  .project-detail-title {
    font-size: 2.8rem;
  }

  .project-images-grid {
    gap: 24px;
  }

  .project-name-overlay {
    font-size: 2.5rem;
    bottom: 32px;
    left: 32px;
  }

  .project-info-cards-overlay {
    padding: 20px;
    gap: 7px;
  }

  .highlight-wrapper {
    padding: 48px;
    border-radius: 28px;
  }

  .highlight-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .highlight-content-grid {
    gap: 24px;
  }

  .highlight-text {
    padding: 40px;
  }

  .gallery-header {
    margin-bottom: 48px;
  }

  .gallery-title {
    font-size: 2.2rem;
  }

  .gallery-main {
    margin-bottom: 26px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .project-detail-title {
    font-size: 2.2rem;
  }

  .project-images-grid {
    grid-template-columns: 1fr;
  }

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

  .project-info-side {
    min-height: 500px;
  }

  .project-name-overlay {
    font-size: 2rem;
    bottom: 24px;
    left: 24px;
  }

  .project-info-cards-overlay {
    top: 45%;
    padding: 22px;
    gap: 7px;
  }

  .project-description-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .description-content p {
    font-size: 1rem;
  }

  .highlight-wrapper {
    padding: 40px;
    border-radius: 24px;
  }

  .highlight-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }

  .highlight-content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .highlight-text {
    gap: 16px;
    padding: 36px;
  }

  .highlight-text p {
    font-size: 0.95rem;
  }

  .gallery-header {
    margin-bottom: 40px;
  }

  .gallery-title {
    font-size: 1.8rem;
  }

  .gallery-main {
    aspect-ratio: 4 / 3;
  }

  .gallery-nav.prev {
    left: 14px;
  }

  .gallery-nav.next {
    right: 14px;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}


@media (max-width: 520px) {
  .project-detail-hero {
    padding: 32px 0 40px;
  }

  .project-detail-title {
    font-size: 1.8rem;
  }

  .project-main-image,
  .project-info-side {
    border-radius: 24px;
  }

  .project-info-side {
    min-height: 450px;
  }

  .project-name-overlay {
    font-size: 1.5rem;
    bottom: 20px;
    left: 20px;
  }

  .project-info-cards-overlay {
    padding: 18px;
    gap: 7px;
  }

  .info-card {
    padding: 9px 12px;
    gap: 8px;
  }

  .info-icon {
    width: 28px;
    height: 28px;
  }

  .info-icon svg {
    width: 14px;
    height: 14px;
  }

  .info-label {
    font-size: 0.6rem;
  }

  .info-value {
    font-size: 0.75rem;
  }

  .btn-catalog {
    width: 100%;
    justify-content: center;
  }

  .highlight-section {
    padding: 60px 0;
  }

  .highlight-wrapper {
    padding: 28px;
    border-radius: 20px;
  }

  .highlight-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .highlight-content-grid {
    gap: 20px;
  }

  .highlight-text {
    padding: 28px;
  }

  .highlight-image {
    border-radius: 20px;
  }

  .gallery-section {
    padding: 60px 0;
  }

  .gallery-header {
    margin-bottom: 32px;
  }

  .gallery-title {
    font-size: 1.5rem;
  }

  .gallery-main {
    border-radius: 22px;
    margin-bottom: 18px;
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
