@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@300;400;500;600;700;800&display=swap");
@font-face {
  font-family: "Overused Grotesk";
  src: url("/fonts/OverusedGrotesk-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("/fonts/OverusedGrotesk-Book.woff2") format("woff2");
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("/fonts/OverusedGrotesk-Roman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("/fonts/OverusedGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("/fonts/OverusedGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis {
  height: auto;
}
html.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: "Overused Grotesk", sans-serif;
  background-color: #121717;
  color: #e6e7e0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
}
img[loading=lazy] {
  content-visibility: auto;
}

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

[data-splitting] .word,
[data-splitting] .line {
  overflow: hidden;
  display: inline-block;
}
[data-splitting] .char {
  display: inline-block;
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  column-gap: 32px;
  position: relative;
  width: 100%;
  max-width: 1568px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
    overflow-x: hidden;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    column-gap: 24px;
    margin: 0 auto;
    padding: 0 16px;
  }
}
.container.full-width {
  max-width: 100%;
  padding: 0 80px;
}
@media (min-width: 1025px) {
  .container.full-width {
    padding: 0 48px;
  }
}
@media (max-width: 1024px) {
  .container.full-width {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .container.full-width {
    padding: 0 16px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 80px;
  z-index: 1000;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}
.header {
  transition: transform 0.3s ease-in-out;
}
.header.header-hidden {
  transform: translateX(-50%) translateY(-100%);
}
@media (max-width: 1560px) {
  .header {
    padding: 0 48px;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 16px 32px;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 16px;
  }
}

.logo img {
  width: 118px;
  height: 84px;
}
@media (max-width: 1024px) {
  .logo img {
    width: 99px;
    height: 71px;
  }
}
@media (max-width: 767px) {
  .logo img {
    display: none;
  }
}

.navigation {
  display: flex;
  gap: 4px;
  align-items: center;
}
@media (max-width: 767px) {
  .navigation {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .navigation.misc-nav {
    justify-content: flex-end;
  }
}

.nav-link,
.nav-link-contact {
  padding: 12px 24px;
  color: #e6e7e0;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
@media (max-width: 1024px) {
  .nav-link,
  .nav-link-contact {
    font-size: 18px;
    padding: 12px 20px;
  }
}
@media (max-width: 767px) {
  .nav-link,
  .nav-link-contact {
    font-size: 16px;
    padding: 12px 16px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.nav-link.active {
  background-color: rgba(255, 255, 255, 0.15);
}
.nav-link-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (hover: hover) and (pointer: fine) {
  .nav-link-disabled:hover {
    background-color: transparent;
  }
}

.nav-link-contact {
  background-color: #eb4439;
}
@media (hover: hover) and (pointer: fine) {
  .nav-link-contact:hover {
    background-color: #d63c31;
  }
}
.nav-link-contact.active {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121717;
  padding: 0 80px;
}
@media (min-width: 1025px) {
  .hero {
    padding: 0 48px;
  }
}
@media (max-width: 1024px) {
  .hero {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: calc(100vh - 80px);
    padding: 0 16px;
  }
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 64px);
  width: 100%;
}
@media (max-width: 1023px) {
  .name-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .name-wrapper {
    flex-direction: column;
    gap: 8px;
  }
}

.name-first,
.name-last {
  font-family: "Overused Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw + 1rem, 7rem);
  font-weight: 400;
  color: rgba(230, 231, 224, 0.7);
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  cursor: default;
  user-select: none;
}
@media (max-width: 1023px) {
  .name-first,
  .name-last {
    font-size: 80px;
    order: 2;
  }
}
@media (max-width: 767px) {
  .name-first,
  .name-last {
    font-size: 56px;
  }
}

.logo-animation {
  position: relative;
  width: clamp(100px, 20vw, 280px);
  height: clamp(100px, 20vw, 280px);
  flex-shrink: 0;
  transform: rotate(3.029deg);
}
@media (max-width: 1023px) {
  .logo-animation {
    order: 1;
  }
}

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

.subtitle {
  position: absolute;
  bottom: 80px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1024px) {
  .subtitle {
    bottom: 40px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .subtitle {
    bottom: 24px;
    left: 0;
  }
}

.subtitle-line {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: "Overused Grotesk", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: rgba(230, 231, 224, 0.7);
  line-height: 1.25;
  white-space: nowrap;
}

.separator {
  width: 32px;
  height: 32px;
  background-image: url("img/hero-sep.png");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin: 0 4px 8px;
}
@media (max-width: 767px) {
  .separator {
    width: 24px;
    height: 24px;
  }
}

.hero-reveal-text {
  display: inline;
}

.hero-word {
  display: inline-block;
  white-space: nowrap;
}

.hero-char {
  display: inline-block;
  will-change: transform, opacity;
}

.about {
  grid-column: 1/-1;
  padding: 160px 0;
  flex-direction: column;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  column-gap: 32px;
  row-gap: 184px;
}
@media (max-width: 1024px) {
  .about {
    padding: 110px 0;
    row-gap: 120px;
  }
}
@media (max-width: 767px) {
  .about {
    grid-column: 1/-1;
    padding: 80px 0;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 80px;
  }
}

.about-content {
  grid-column: 1/-1;
}
@media (max-width: 1024px) {
  .about-content {
    grid-column: 1/-1;
  }
}

.section-title {
  font-size: 24px;
  font-weight: 500;
  color: #eb4439;
  margin-bottom: 48px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.about-text {
  font-size: clamp(2rem, 4vw, 7rem);
  color: rgba(230, 231, 224, 0.7);
  line-height: 1.2;
  position: relative;
  cursor: default;
  user-select: none;
}
.about-text p {
  font-weight: 350;
}

.about-quote {
  grid-column-start: 7;
  grid-column-end: -1;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .about-quote {
    grid-column: 5/-1;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .about-quote {
    grid-column: 1/-1;
    justify-content: flex-start;
  }
}
.about-quote p {
  font-size: clamp(2rem, 1vw + 1rem, 3rem);
  color: rgba(230, 231, 224, 0.7);
  text-align: right;
  line-height: 1.5;
  letter-spacing: -0.4px;
  font-weight: 350;
}
@media (max-width: 1024px) {
  .about-quote p {
    font-size: 24px;
    max-width: 100%;
  }
}

.scroll-reveal-text {
  display: block;
  word-wrap: break-word;
}

.scroll-word {
  display: inline-block;
  white-space: nowrap;
}

.scroll-char {
  display: inline-block;
  will-change: transform, opacity;
}

.skills-section {
  width: 100%;
  padding: 160px 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .skills-section {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .skills-section {
    padding: 80px 0;
  }
}
.skills-section .section-title {
  position: relative;
  width: 100%;
  max-width: 1568px;
  margin: 0 auto 48px auto;
  padding-left: 80px;
}
@media (max-width: 1024px) {
  .skills-section .section-title {
    padding-left: 32px;
  }
}
@media (max-width: 767px) {
  .skills-section .section-title {
    padding-left: 16px;
    margin-bottom: 24px;
  }
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .marquee {
    margin-bottom: 8px;
  }
}

.marquee-content {
  display: inline-flex;
  gap: 32px;
  will-change: transform;
}
.marquee-content span {
  font-size: 56px;
  color: rgba(230, 231, 224, 0.7);
  font-weight: 400;
}
.marquee-content span.skill-o {
  color: #eb4439;
}
@media (max-width: 1024px) {
  .marquee-content span {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .marquee-content span {
    font-size: 40px;
  }
}

.marquee-reverse .marquee-content {
  margin-bottom: 0;
}

.works {
  grid-column: 1/span 12;
  padding: 160px 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .works {
    padding: 110px 0;
    flex-direction: column;
    gap: 80px;
  }
}
@media (max-width: 767px) {
  .works {
    grid-column: 1/-1;
    padding: 80px 0;
    flex-direction: column;
    gap: 80px;
  }
}

.works-sidebar {
  position: sticky;
  top: 200px;
  max-width: 640px;
  height: fit-content;
}
@media (max-width: 1024px) {
  .works-sidebar {
    position: relative;
    top: 0;
    max-width: 100%;
  }
}

.works-description {
  font-size: 32px;
  color: rgba(230, 231, 224, 0.7);
  line-height: 1.2;
  max-width: 506px;
}
@media (max-width: 1024px) {
  .works-description {
    font-size: 24px;
    max-width: 416px;
  }
}

.works-slider {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media (max-width: 1024px) {
  .works-slider {
    gap: 88px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .works-slider {
    gap: 64px;
    width: 100%;
  }
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 636px;
}
@media (hover: hover) and (pointer: fine) {
  .project-card:hover {
    cursor: url("img/cursor-hover.png") 30 30, pointer;
  }
}
@media (max-width: 1024px) {
  .project-card {
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .project-card {
    max-width: unset;
  }
}

.pixelation-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.project-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: visible;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .project-image img {
    border-radius: 12px;
  }
}

.external-link {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  background-color: #eb4439;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .external-link {
    width: 56px;
    height: 56px;
    top: 32px;
    right: 32px;
  }
}
@media (max-width: 767px) {
  .external-link {
    width: 48px;
    height: 48px;
    top: 24px;
    right: 24px;
  }
}
.external-link img {
  width: 40px;
  height: 40px;
}
@media (max-width: 1024px) {
  .external-link img {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 767px) {
  .external-link img {
    width: 30px;
    height: 30px;
  }
}

.project-info h3 {
  font-size: 32px;
  color: rgba(230, 231, 224, 0.7);
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .project-info h3 {
    font-size: 24px;
  }
}

.project-type {
  font-size: 24px;
  color: #eb4439;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .project-type {
    font-size: 18px;
  }
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.skeleton-line, .skeleton-image {
  background: linear-gradient(90deg, rgba(230, 231, 224, 0.05) 0%, rgba(230, 231, 224, 0.1) 50%, rgba(230, 231, 224, 0.05) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
  border-radius: 16px;
}

.project-card-skeleton {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 636px;
}
@media (max-width: 1024px) {
  .project-card-skeleton {
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .project-card-skeleton {
    max-width: unset;
  }
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 1;
}

.skeleton-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton-line {
  border-radius: 4px;
  height: 24px;
}

.skeleton-title {
  width: 55%;
}

.skeleton-category {
  width: 28%;
}

.footer {
  grid-column: 1/span 12;
  padding: 0 0 80px 0;
  background-color: #121717;
}
@media (max-width: 1024px) {
  .footer {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 80px 0;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1024px) {
  .footer-content {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .footer-content {
    gap: 8px;
  }
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-email a {
  font-size: 40px;
  color: rgba(230, 231, 224, 0.7);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-email a:hover {
    color: #eb4439;
  }
}
.footer-email img {
  width: 42px;
  height: 42px;
}

.project-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--theme-bg-dark);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.project-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.close-button {
  position: sticky;
  top: 40px;
  left: calc(100% - 104px);
  width: 64px;
  height: 64px;
  background-color: var(--theme-primary);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 10000;
}
.close-button img {
  width: 32px;
  height: 32px;
}
@media (hover: hover) and (pointer: fine) {
  .close-button:hover {
    background-color: var(--theme-primary-hover);
  }
}
@media (max-width: 1400px) {
  .close-button {
    width: 44px;
    height: 44px;
    top: 24px;
    left: calc(100% - 64px);
  }
  .close-button img {
    width: 24px;
    height: 24px;
  }
}

.project-detail-content {
  clear: both;
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 80px 120px;
}
@media (max-width: 1400px) {
  .project-detail-content {
    width: 100%;
    max-width: unset;
    padding: 0 40px 80px;
  }
}
@media (max-width: 767px) {
  .project-detail-content {
    padding: 0 16px 120px;
  }
}

.project-detail {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1024px) {
  .project-detail {
    gap: 32px;
  }
}

.project-hero {
  text-align: left;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .project-hero {
    padding: 64px 0 0;
  }
}

.project-hero-title {
  font-size: 56px;
  font-weight: 500;
  color: var(--theme-text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .project-hero-title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .project-hero-title {
    font-size: 40px;
  }
}

.project-hero-subtitle {
  font-size: 24px;
  color: var(--theme-text-secondary);
  max-width: 800px;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 1024px) {
  .project-hero-subtitle {
    font-size: 20px;
  }
}

.project-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
  margin-bottom: 40px;
  border-top: 1px solid rgba(230, 231, 224, 0.2);
  border-bottom: 1px solid rgba(230, 231, 224, 0.2);
}
@media (max-width: 1024px) {
  .project-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 40px 0;
  }
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-label {
  font-size: 14px;
  color: var(--theme-primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.info-value {
  font-size: 18px;
  color: var(--theme-text-primary);
  line-height: 1.4;
}
.info-value a {
  font-size: 18px;
  color: var(--theme-primary);
  line-height: 1.4;
}

.project-main-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}
.project-main-image picture,
.project-main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.project-main-image:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .project-main-image {
    margin-bottom: 40px;
  }
}

.project-content-images {
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  font-size: 0;
  line-height: 0;
}
.project-content-images picture,
.project-content-images img {
  width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
  margin-bottom: -1px;
}
.project-content-images picture:last-child,
.project-content-images img:last-child {
  margin-bottom: 0;
}
.project-content-images:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .project-content-images {
    margin-bottom: 40px;
  }
  .project-content-images img {
    margin-bottom: 0;
  }
}

.project-description {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.project-description h2 {
  font-size: 48px;
  font-weight: 500;
  color: #e6e7e0;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .project-description h2 {
    font-size: 40px;
  }
}

.description-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 1024px) {
  .description-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.description-col p {
  font-size: 20px;
  color: var(--theme-text-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.description-col p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .description-col p {
    font-size: 18px;
  }
}

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

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item.large {
  grid-column: 1/-1;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-features h2 {
  font-size: 48px;
  font-weight: 500;
  color: #e6e7e0;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .project-features h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .features-grid {
    gap: 32px;
  }
}

.feature-card {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(230, 231, 224, 0.1);
}
@media (max-width: 1024px) {
  .feature-card {
    padding: 32px;
  }
}
.feature-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--theme-primary);
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .feature-card h3 {
    font-size: 24px;
  }
}
.feature-card p {
  font-size: 18px;
  color: var(--theme-text-primary);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .feature-card p {
    font-size: 16px;
  }
}

.project-full-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.project-full-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-impact h2 {
  font-size: 48px;
  font-weight: 500;
  color: #e6e7e0;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 1024px) {
  .project-impact h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}
@media (max-width: 1024px) {
  .impact-stats {
    gap: 40px;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-number {
  font-size: 64px;
  font-weight: 700;
  color: var(--theme-primary);
  line-height: 1;
}
@media (max-width: 1024px) {
  .stat-number {
    font-size: 48px;
  }
}

.stat-label {
  font-size: 20px;
  color: var(--theme-text-primary);
}
@media (max-width: 1024px) {
  .stat-label {
    font-size: 18px;
  }
}

[data-theme=centounopercento] .close-button img {
  filter: invert(1) brightness(0);
}

.misc-section {
  grid-column: 1/span 12;
  padding: 160px 0 80px;
  min-height: 100vh;
}
@media (max-width: 1024px) {
  .misc-section {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .misc-section {
    grid-column: 1/-1;
    padding: 80px 0;
  }
}

.misc-header {
  max-width: 800px;
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .misc-header {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .misc-header {
    margin-bottom: 40px;
  }
}

.misc-description {
  font-size: 32px;
  color: rgba(230, 231, 224, 0.7);
  line-height: 1.2;
  max-width: 640px;
}
@media (max-width: 1024px) {
  .misc-description {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .misc-description {
    font-size: 20px;
  }
}

.misc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 767px) {
  .misc-grid {
    grid-template-columns: 1fr;
  }
}
.misc-grid .misc-col {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.misc-grid .project-card {
  max-width: unset;
}
@media (hover: hover) and (pointer: fine) {
  .misc-grid .project-card[data-click-action=none] {
    cursor: default;
  }
}
.misc-grid .project-image {
  aspect-ratio: unset;
}
.misc-grid .project-image > img {
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  .misc-grid .project-image > img {
    width: 110%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .misc-grid {
    grid-template-columns: 1fr;
  }
  .misc-grid .misc-col-right {
    order: -1;
  }
}

:root {
  --theme-primary: #eb4439;
  --theme-primary-hover: #d63c31;
  --theme-bg-dark: #121717;
  --theme-text-primary: rgba(230, 231, 224, 0.7);
  --theme-text-secondary: #e6e7e0;
}

[data-theme=vanzetti] {
  --theme-primary: #08d6ff;
  --theme-primary-hover: #08b4d6;
  --theme-bg-dark: #000f19;
  --theme-text-primary: #ffffff;
  --theme-text-secondary: rgba(255, 255, 255, 0.7);
}

[data-theme=oneoone] {
  --theme-primary: #cf2e2e;
  --theme-primary-hover: #b02727;
  --theme-bg-dark: #010101;
  --theme-text-primary: #f5f3f3;
  --theme-text-secondary: #bebebe;
}

[data-theme=wurthland] {
  --theme-primary: #E73E2C;
  --theme-primary-hover: #c03f30;
  --theme-bg-dark: #F5F5F5;
  --theme-text-primary: #010101;
  --theme-text-secondary: #2b2a2a;
}

[data-theme=centounopercento] {
  --theme-primary: #FAFF0D;
  --theme-primary-hover: #b5b815;
  --theme-bg-dark: #000000;
  --theme-text-primary: #ffffff;
  --theme-text-secondary: rgba(255, 255, 255, 0.7);
}

[data-theme=redline] {
  --theme-primary: #FF0041;
  --theme-primary-hover: #CC0034;
  --theme-bg-dark: #17141F;
  --theme-text-primary: #ffffff;
  --theme-text-secondary: #65636B;
}

/*# sourceMappingURL=styles.css.map */
