/* === ROOT VARIABLES === */
:root {
  --background: #101010;
  --on-background: #f2f2f2;
  --g1: #00ffab;
  --g2: #fc356d;
  --g3: #fecc4e;

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 10px;
  --glass-radius: 24px;
  --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);

  --text-highlight: #fafafa;
  --text-body: rgba(255, 255, 255, 0.58);
  --text-muted: rgba(255, 255, 255, 0.42);
}

/* === RESET & BASE === */
* {
  cursor: none;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: Inter, sans-serif;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: var(--background);
  color: var(--on-background);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

span {
  display: inline-block;
}

/* === TYPOGRAPHY === */
.text-hero-serif {
  font-family: Gloock, serif;
  font-style: italic;
  background: linear-gradient(to bottom, var(--on-background) 50%, transparent 95%);
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 2px;
}

/* === LOADING OVERLAY === */
.loading-overlay {
  z-index: 9;
  grid-row-gap: 16px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #101010;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 0.8s ease-in-out;
}

@media screen and (min-width: 801px) {
  .loading-overlay {
    display: flex !important;
  }
  .locomotive-scroll {
    opacity: 0 !important;
  }
}

.locomotive-scroll.reveal {
  opacity: 1 !important;
  animation: 0.8s cubic-bezier(0.22, 1, 0.36, 1) fadeIn;
}

.text-loading {
  text-align: center;
  letter-spacing: 0.2px;
}

.logo-loading {
  height: 40px;
}

/* === SWIPE INDICATOR === */
.swipe-indicator-wrapper {
  display: none;
}

/* === NAVBAR === */
.section-nav {
  z-index: 10;
  height: auto;
  width: 100vw;
  padding: 20px 48px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(16, 16, 16, 0.8), rgba(16, 16, 16, 0));
  pointer-events: none;
}

.section-nav > * {
  pointer-events: auto;
}

.nav-bar {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}

.nav-left-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-pill-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.nav-right-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.logo-block {
  display: flex;
  grid-column-gap: 12px;
  align-items: center;
}

.logomark {
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  grid-row-gap: 6px;
  justify-content: center;
}

.text-logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.text-underlogo {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

/* Nav Pill */
.nav-pill {
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-pill:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  width: 80px;
  height: 36px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--on-background);
  transition: background 0.2s ease;
  z-index: 1;
  position: relative;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.04);
}

.text-nav-toggle {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1;
}

.nav-indicator-pill {
  z-index: 0;
  width: 80px;
  height: 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-indicator-pill.info {
  left: auto;
  right: 4px;
}

.nav-indicator-glow {
  width: 24px;
  height: 4px;
  background-color: var(--on-background);
  border-radius: 2px;
  margin-bottom: -2px;
  margin-left: 112px;
  box-shadow: 0 2px 25px 2px #fff;
  transition: margin-left 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.pill-change {
  margin-left: 120px;
}

.nav-indicator-glow.info-pill-change {
  margin-left: 33px;
}

/* Nav resume button */
.nav-resume-btn {
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-background);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
  margin-left: 8px;
  white-space: nowrap;
}

.nav-resume-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Links button */
.chip-socials-wrapper {
  display: flex;
  grid-column-gap: 8px;
  align-items: center;
}

.link-pill {
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-background);
  text-decoration: none;
}

.link-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.2);
}

.text-socialnav {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-background);
  letter-spacing: 0.01em;
  line-height: 1;
}

/* Links Overlay */
.links-overlay {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  display: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(16, 16, 16, 0.6);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  z-index: 100;
}

.links-overlay.links-overlay-opacity {
  animation: 0.5s ease opacity-increase forwards;
  opacity: 1;
  display: flex;
}

@keyframes opacity-increase {
  0% {
    opacity: 0;
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.links-container {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: min(90vw, 800px);
}

.link-chip-container {
  color: var(--on-background);
  width: 25vw;
  padding: 1rem;
  margin: 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.link-chip-container:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.links-grid .link-chip-container {
  width: 100%;
  margin: 0;
  justify-content: center;
}

/* === INFO HERO === */
.section-info-hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 168px 48px 80px;
  position: relative;
  background: radial-gradient(circle farthest-side at 50% 0, rgba(242, 242, 242, 0.08), transparent);
}

.container-info {
  z-index: 1;
  width: min(1200px, 95vw);
  display: flex;
  flex-direction: column;
  position: relative;
}

.container-info.hero {
  grid-row-gap: 64px;
  align-items: center;
}

.text-hero {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--on-background);
  text-align: center;
}

.text-hero.info-hero {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  mix-blend-mode: overlay;
  background-position: 0 0;
  background-size: 200px;
  pointer-events: none;
}

.hero-fade {
  z-index: 5;
  height: 160px;
  background: linear-gradient(to bottom, rgba(16, 16, 16, 0), var(--background) 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-fade.info-hero {
  display: none;
}

.scroll-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}

.icon-scroll-down {
  width: 36px;
  height: 36px;
  opacity: 0.4;
  display: block;
  transform: rotate(180deg);
  animation: 3s ease-in-out infinite grow;
  will-change: transform;
}

/* === INFO PAGE === */
.info-page {
  background-image: radial-gradient(
    circle farthest-side at 50% 0,
    rgb(51 233 235 / 25%),
    rgba(0, 0, 0, 0)
  );
}

.section-general {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 180px 48px;
}

.section-general.info {
  padding: 72px 48px 180px;
}

.section-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.divider-wrapper {
  width: 80%;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-wrapper img {
  max-width: 100%;
}

.info-section {
  width: 60vw;
  text-align: left;
  margin: 0 auto;
}

.text-projectcard-title {
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 -2px 10px rgba(255, 255, 255, 0.2);
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-projectcard-description {
  color:#fff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 3vh;
    letter-spacing: 0;
  justify-content: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === INFO SECTION CONTENT === */
.info-section .text-projectcard-title {
  display: block;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-align: left;
  text-shadow: none;
  color: var(--text-highlight);
  margin-bottom: 1.5rem;
}

.info-section .double-column-block.info-hero {
  font-size: 1.05rem;
  line-height: 1.7;
  align-items: flex-start;
  grid-column-gap: 3rem;
  margin-top: 1rem;
}

.info-section .container-hero-image.info-hero {
  width: 100%;
}

.info-section .window-outline.info-hero {
  width: 100%;
}

.info-section .window-content.info-hero img {
  height: auto !important;
  max-height: 380px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.info-section .text-projectcard-description {
  display: block;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
  color: var(--text-body);
  letter-spacing: 0;
  margin-top: 1rem;
}

/* === WINDOW / HERO COMMON STYLES === */
.container-hero-image {
  z-index: 3;
  width: min(1200px, 95vw);
  position: relative;
}

.container-hero-image.info-hero {
  width: fit-content;
}

.window-outline {
  border-radius: 24px;
  outline: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
  overflow: hidden;
  box-shadow:
    inset 0 0 8px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(0, 0, 0, 0.2),
    0 30px 80px rgba(0, 0, 0, 0.6);
  background: radial-gradient(circle farthest-side at 50% 0, rgba(242, 242, 242, 0.12), transparent);
}

.window-outline.info-hero {
  box-shadow:
    inset 0 0 8px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(0, 0, 0, 0.2),
    0 30px 80px rgba(0, 0, 0, 0.5);
}

.window-main {
  background: rgba(16, 16, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    inset 0 0 10px rgba(0, 0, 0, 0.1),
    0 0 12px rgba(0, 0, 0, 0.3);
}

.window-content {
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 200px;
  position: relative;
  background: rgba(16, 16, 16, 0.5);
}

.window-content.info-hero {
  padding: 0;
}

.glare-item-top {
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, #fff 50%, rgba(0, 0, 0, 0) 90%);
  margin-bottom: -1px;
}

.glare-item-top.outer-edge {
  z-index: 1;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 5%, rgba(255, 255, 255, 0.8) 35%, #fff 50%, rgba(255, 255, 255, 0.8) 65%, rgba(0, 0, 0, 0) 95%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.glare-item-top.hero-inner {
  height: 2px;
  margin-bottom: -2px;
}

.double-column-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-column-gap: 48px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: baseline;
}

.double-column-block.info-hero {
  align-items: center;
}

/* === FOOTER === */
.section-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  padding: 120px 48px 100px;
  position: relative;
}

.container-footer {
  width: min(1148px, 92vw);
  display: flex;
  flex-direction: column;
  grid-row-gap: 64px;
}

.footer-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.logomark-footer {
  height: 64px;
  margin-bottom: 16px;
}

.footer-links-column-wrapper {
  display: flex;
  grid-column-gap: 48px;
}

.footer-links-column {
  width: auto;
  min-width: 106px;
  display: flex;
  flex-direction: column;
  grid-row-gap: 16px;
  align-items: flex-start;
}

.text-footer-links-overline {
  opacity: 0.4;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  grid-row-gap: 8px;
}

.footer-link {
  height: auto;
  display: flex;
  grid-column-gap: 4px;
  color: var(--on-background);
  align-items: center;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.footer-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.text-footer-link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.text-projectpage-body {
  color: var(--text-body);
  font-size: clamp(1rem, 1vw, 1.1rem);
  font-weight: 400;
  line-height: 1.8;
}

.icon-external {
  transform: rotate(45deg);
  width: 20px;
  opacity: 0.5;
}

/* === CONTACT ICONS (matching index.html) === */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  position: relative;
  flex-wrap: wrap;
}

.contact-icons {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  color: var(--on-background);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              background 0.3s ease;
  will-change: transform;
}

.contact-icons:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.contact-icons svg {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 767px) {
  .contact-links {
    gap: 16px;
  }
  .contact-icons {
    padding: 12px;
  }
  .contact-icons svg {
    width: 24px;
    height: 24px;
  }
}

.text-footer-copyright {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  white-space: normal;
  word-wrap: break-word;
}

.text-under-copyright {
  opacity: 0.5;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 4px;
  white-space: normal;
  word-wrap: break-word;
}

/* Page load fade-in */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: 1s cubic-bezier(0.22, 1, 0.36, 1) fadeInUp;
}

/* === ANIMATIONS === */
@keyframes grow {
  0% {
    opacity: 0.3;
    transform: scale(1) translateY(0) rotate(180deg);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1) translateY(6px) rotate(180deg);
  }
  100% {
    opacity: 0.3;
    transform: scale(1) translateY(0) rotate(180deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translateX(-60px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translateX(60px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Scroll animation classes */
.up-slider {
  opacity: 0;
}

.left-sliders,
.right-sliders {
  opacity: 0;
}

.slide-up {
  opacity: 1 !important;
  animation: 0.8s cubic-bezier(0.22, 1, 0.36, 1) slide-up;
  will-change: transform;
}

.slide-right {
  animation: 0.8s cubic-bezier(0.22, 1, 0.36, 1) slide-right;
  will-change: transform;
}

.slide-left {
  animation: 0.8s cubic-bezier(0.22, 1, 0.36, 1) slide-left;
  will-change: transform;
}

/* === CURSOR === */
.cursor {
  pointer-events: none;
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform, left, top;
  mix-blend-mode: difference;
  background: rgba(242, 242, 242, 0.35);
  transition: width 0.18s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.18s cubic-bezier(0.22, 1, 0.36, 1),
              border-radius 0.18s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.1s ease,
              background 0.1s ease;
}

.cursor.is-locked {
  background: transparent;
  transition: width 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              border-radius 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.1s ease,
              background 0.1s ease;
  mix-blend-mode: normal;
}

.cursor.cursor--text {
  background: rgba(242, 242, 242, 0.06);
  border-color: rgba(242, 242, 242, 0.3);
  mix-blend-mode: normal;
}

.cursor-trail {
  pointer-events: none;
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(242, 242, 242, 0.06);
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform, left, top;
  transition: opacity 0.4s ease;
}

/* === RESPONSIVE === */

/* Large desktop: 1920px+ */
@media screen and (min-width: 1920px) {
  .section-nav {
    padding: 24px 64px;
  }

  .section-general {
    padding: 120px 64px;
  }

  .section-general.info {
    padding: 90px 64px 120px;
  }

  .container-info,
  .container-footer {
    max-width: 1200px;
  }

  .container-info.hero {
    max-width: 1200px;
  }

  .section-footer {
    padding: 120px 64px 100px;
  }

  .section-info-hero {
    padding-top: 240px;
    padding-bottom: 160px;
  }

  .window-content {
    padding: 96px 80px;
  }

  .text-hero.info-hero {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
  }
}

/* Medium-large desktop: 1440px */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .container-hero-image {
    width: min(1044px, 85vw);
  }

  .window-content {
    padding: 88px 72px;
  }

  .container-info {
    width: min(1044px, 90vw);
  }

  .container-footer {
    width: min(1044px, 90vw);
  }

  .text-hero.info-hero {
    font-size: clamp(2.8rem, 4vw, 3.5rem);
    line-height: 1.1;
  }
}

/* Tablet landscape: 992px - 1279px */
@media screen and (max-width: 1279px) and (min-width: 992px) {
  .section-general {
    padding: 160px 48px;
  }

  .section-general.info {
    padding: 64px 48px 160px;
  }
}

/* Tablet: 991px and below */
@media screen and (max-width: 991px) {
  .section-nav {
    padding: 16px 32px;
  }

  .section-general {
    padding: 140px 32px;
  }

  .section-general.info {
    padding: 56px 32px 140px;
  }

  .section-divider {
    padding: 0 32px;
  }

  .section-footer {
    padding: 80px 32px 64px;
  }

  .container-hero-image {
    width: 100%;
  }

  .window-content {
    padding: 64px 40px;
  }

  .text-hero {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
  }

  .container-info {
    width: 100%;
  }

  .section-info-hero {
    padding: 144px 32px 60px;
  }

  .info-section {
    width: 100%;
  }

  .info-section .text-projectcard-title {
    font-size: 1rem;
  }

  .footer-top-wrapper {
    flex-direction: column;
    gap: 32px;
  }
}

/* Mobile large: 767px and below */
@media screen and (max-width: 767px) {
  .section-nav {
    padding: 16px 24px;
  }

  .section-general {
    padding: 100px 24px;
  }

  .section-general.info {
    padding: 48px 24px 100px;
  }

  .section-divider {
    padding: 0 24px;
  }

  .section-footer {
    padding: 64px 24px 48px;
  }

  .section-info-hero {
    padding: 120px 24px 48px;
    height: auto;
    min-height: 80vh;
  }

  .window-content {
    padding: 48px 28px;
  }

  .text-hero {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .container-info.hero {
    grid-row-gap: 40px;
  }

  .info-section {
    width: 100%;
  }

  .info-section .text-projectcard-title {
    font-size: 1rem;
  }

  .info-section .text-projectcard-description {
    font-size: 0.8rem;
  }

  .double-column-block {
    grid-template-columns: 1fr;
  }

  .footer-links-column-wrapper {
    flex-wrap: wrap;
    gap: 32px;
  }

  .logomark-footer {
    height: 48px;
  }

  .footer-top-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .cursor,
  .cursor-trail {
    display: none !important;
  }
}

/* Mobile small: 479px and below */
@media screen and (max-width: 479px) {
  .section-nav {
    padding: 12px 16px;
    background: rgba(16, 16, 16, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-bar {
    gap: 8px;
  }

  .nav-left-wrapper {
    flex: 0 auto;
  }

  .nav-right-wrapper {
    flex: 1;
  }

  .logomark {
    height: 40px;
  }

  .text-logo {
    font-size: 16px;
  }

  .text-underlogo {
    display: none;
  }

  .nav-pill {
    height: 40px;
  }

  .nav-toggle {
    width: 72px;
    height: 32px;
  }

  .text-nav-toggle {
    font-size: 13px;
  }

  .link-pill {
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .section-general {
    padding: 80px 16px;
  }

  .section-general.info {
    padding: 40px 16px 80px;
  }

  .section-divider {
    padding: 0 16px;
  }

  .section-footer {
    padding: 48px 16px 40px;
  }

  .window-content {
    padding: 40px 24px;
  }

  .text-hero {
    font-size: clamp(1.8rem, 12vw, 2.8rem);
    letter-spacing: -0.04em;
  }

  .section-info-hero {
    padding: 100px 16px 40px;
  }

  .text-hero.info-hero {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .logo-text {
    display: none;
  }

  .container-footer {
    grid-row-gap: 40px;
  }

  .footer-top-wrapper {
    gap: 24px;
  }

  .footer-links-column-wrapper {
    gap: 24px;
  }

  .logomark-footer {
    height: 40px;
  }

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

  .divider-wrapper {
    width: 90%;
  }
}
