:root {
  --bg-color: #ffffff;
  --red: #ff0000;
  --text-grey: rgb(215, 206, 207);
  --text-grey-strong: rgb(215, 206, 207);
  --black: #000000;
  --font-main: "Inter", "Suisseintl Webxl", Arial, sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--black);
  font-family: var(--font-main);
}

body {
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  position: relative;
  width: 100%;
}

/* Custom Cursor Styles */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease, border-color 0.3s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 0, 0, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: var(--black);
  background-color: rgba(255, 0, 0, 0.1);
}

.cursor-follower.hover {
  transform: translate(-50%, -50%) scale(0.8);
  background-color: rgba(255, 0, 0, 0.3);
}

.cursor.magnetic {
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Particle Trail Styles */
.particle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 4px;
  height: 4px;
  background-color: var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade 1s ease-out forwards;
}

@keyframes particleFade {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
}

/* Navigation center positioning for toggle */
.nav-center {
  position: absolute;
  left: 25%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Simple Theme Toggle */
.theme-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  cursor: pointer;
}

.theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.moon-icon, .sun-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: bold;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.moon-icon {
  left: 8px;
  color: #333;
  opacity: 1;
}

.sun-icon {
  right: 8px;
  color: #333;
  opacity: 0;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(30px);
}

input:checked ~ .moon-icon {
  opacity: 0;
}

input:checked ~ .sun-icon {
  opacity: 1;
  color: #fff;
}

/* Dark theme styles */
body.dark-theme {
  --bg-color: #1a1a1a;
  --black: #ffffff;
  --text-grey: rgb(180, 180, 180);
  --text-grey-strong: rgb(200, 200, 200);
}

body.dark-theme .slider {
  background-color: #444;
}

body.dark-theme input:checked + .slider {
  background-color: #00ffff;
}

body.dark-theme .moon-icon,
body.dark-theme .sun-icon {
  color: #fff !important;
}

body.dark-theme input:checked ~ .sun-icon {
  color: #fff !important;
  opacity: 1 !important;
}

/* Enhanced Grid Interactions */
.grid {
  position: fixed;
  background-color: var(--red);
  z-index: 1000;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

/* Hover text container */
.hover-text {
  position: fixed;
  bottom: 40px;
  left: 7%;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 65px;
  text-transform: lowercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10000;
  pointer-events: none;
  text-align: left;
}

.hover-text.show {
  opacity: 1 !important;
  animation: randomTextShow 0.5s ease-out;
}

@keyframes randomTextShow {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(0) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hover-text-line {
  margin: 0;
  text-align: left;
  text-decoration: none;
  color: var(--text-grey-strong);
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -0.7px;
  line-height: 30px;
  display: block;
  transition: color 0.3s ease, transform 0.2s ease;
}

.hover-text-line:hover {
  color: var(--red);
  transform: translateX(8px) scale(1.02);
}

.hover-text-line:first-child {
  margin-bottom: 8px;
}

.grid-vertical {
  top: 0;
  bottom: 0;
  width: 1.5px;
  left: 40%;
  transform: translateX(-1px);
}

.grid-horizontal {
  display: none;
}

/* Horizontal grid lines */
.grid-horizontal-1,
.grid-horizontal-2,
.grid-horizontal-3,
.grid-horizontal-4,
.grid-horizontal-5,
.grid-horizontal-6 {
  position: absolute;
  background-color: var(--red);
  z-index: 999;
  pointer-events: auto;
  cursor: pointer;
  width: 100%;
  height: 1.5px;
  left: 0;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

/* Position horizontal lines within their sections */
.grid-horizontal-1 {
  top: 17%; /* Above "another burnt-out soul behind the screen" */
}

.grid-horizontal-2 {
  top: 85%; /* Slightly below "yashhmahajan" big red text */
}

.grid-horizontal-3 {
  top: 95%; /* 10% below line 2 */
}

.grid-horizontal-4 {
  top: 7%; /* Above "my vision" part */
}

.grid-horizontal-5 {
  top: 3%; /* Above "let's build something that matters" part */
}

.grid-horizontal-6 {
  top: 13%; /* 10% below line 5 */
}

.layer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.layer-fg {
  position: relative;
  z-index: 10;
}

.layer-grid {
  position: relative;
  z-index: 50;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 19.8947px;
  font-weight: 700;
  letter-spacing: -0.795788px;
  text-transform: lowercase;
  mix-blend-mode: normal;
  z-index: 100;
}

.nav-left {
  position: absolute;
  left: 32px;
}

.nav-right {
  position: absolute;
  right: 32px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-square {
  width: 16px;
  height: 16px;
  background-color: var(--red);
}

.nav-logo-text {
  font-weight: 600;
  color: var(--text-grey-strong);
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* Typing animation for "still loading..." */
.nav-logo-text::after {
  content: 'still loading...';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--red);
  animation: typing 3s steps(15) infinite;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid var(--red);
}

@keyframes typing {
  0% {
    width: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

.nav-right {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: var(--text-grey-strong);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.nav-link:hover {
  color: var(--red);
  transform: translateX(2px);
}

.section {
  position: relative;
  min-height: 120px;
  padding: 96px 32px 96px;
  display: flex;
  align-items: center;
}

.section-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.section-services .section-inner {
  margin-left: 30%;
  padding-left: 32px;
  width: calc(60% - 32px);
  max-width: none;
}

.section-work .section-inner {
  margin-left: 35%;
  padding-left: 32px;
  width: calc(60% - 32px);
  max-width: none;
}

.section-contact .section-inner {
  margin-left: 32%;
  padding-left: 32px;
  width: calc(60% - 32px);
  max-width: none;
}

.section-services .bg-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-work .bg-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-contact .bg-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.bg-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--text-grey);
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -5.03634px;
  line-height: 49.2442px;
  filter: blur(2px);
  opacity: 0.8;
  pointer-events: none;
}

.bg-text-line {
  line-height: 0.9;
  position: absolute;
  white-space: pre;
}

.section-hero .bg-text-line:nth-child(1) { top: 12%; left: 12%; }
.section-hero .bg-text-line:nth-child(2) { top: 23%; left: 28%; }
.section-hero .bg-text-line:nth-child(3) { top: 27%; left: 7%; }
.section-hero .bg-text-line:nth-child(4) { top: 32%; left: 38%; }
.section-hero .bg-text-line:nth-child(5) { top: 40%; left: 18%; }
.section-hero .bg-text-line:nth-child(6) { top: 47%; left: 33%; }
.section-hero .bg-text-line:nth-child(7) { top: 62%; left: 9%; }
.section-hero .bg-text-line:nth-child(8) { top: 71%; left: 25%; }
.section-hero .bg-text-line:nth-child(9) { top: 80%; left: 15%; }

.section-services .bg-text-line:nth-child(1) { top: 15%; left: 8%; }
.section-services .bg-text-line:nth-child(2) { top: 25%; left: 28%; }
.section-services .bg-text-line:nth-child(3) { top: 35%; left: 60%; }
.section-services .bg-text-line:nth-child(4) { top: 45%; left: 50%; }
.section-services .bg-text-line:nth-child(5) { top: 55%; left: 25%; }
.section-services .bg-text-line:nth-child(6) { top: 65%; left: 3%; }
.section-services .bg-text-line:nth-child(7) { top: 75%; left: 3%; }
.section-services .bg-text-line:nth-child(8) { top: 85%; left: 100%; }
.section-services .bg-text-line:nth-child(9) { top: 95%; left: 80%; }

.section-work .bg-text-line:nth-child(1)  { top: 12%;  left: 15%; }
.section-work .bg-text-line:nth-child(2)  { top: 19%;  left: 32%; }
.section-work .bg-text-line:nth-child(3)  { top: 26%;  left: 8%; }
.section-work .bg-text-line:nth-child(4)  { top: 33%;  left: 28%; }
.section-work .bg-text-line:nth-child(5)  { top: 40%;  left: 12%; }
.section-work .bg-text-line:nth-child(6)  { top: 47%;  left: 0%; }
.section-work .bg-text-line:nth-child(7)  { top: 54%;  left: 22%; }
.section-work .bg-text-line:nth-child(8)  { top: 61%;  left: 7%; }
.section-work .bg-text-line:nth-child(9)  { top: 68%;  left: 35%; }
.section-work .bg-text-line:nth-child(10) { top: 75%;  left: 12%; }
.section-work .bg-text-line:nth-child(11) { top: 82%;  left: 28%; }
/* Shared styling for nodes 12–14 */
.section-work .bg-text-line:nth-child(n+12):nth-child(-n+14) {
  color: rgba(220, 0, 0, 0.65);

  font-size: 100px;
  font-weight: 900;
  letter-spacing: -5.81985px;
  line-height: 75px;
  text-transform: lowercase;
  text-align: left;

  mix-blend-mode: normal;
  filter: none;
  text-shadow: none;

  left: 0%;
}

/* Individual vertical positions */
.section-work .bg-text-line:nth-child(12) { 
  top: 88%;
}

.section-work .bg-text-line:nth-child(13) { 
  top: 94%;
}

.section-work .bg-text-line:nth-child(14) { 
  top: 100%;
}



.section-contact .bg-text-line:nth-child(1) { top: 25%; left: 0%; }
.section-contact .bg-text-line:nth-child(2) { top: 50%; left: 0%; }
.section-contact .bg-text-line:nth-child(3) { top: 75%; left: 0%; }

.section-hero .bg-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-topline {
  margin: 0 0 32px;
  color: var(--red);
  font-size: 19.8947px;
  font-weight: 700;
  letter-spacing: -0.795788px;
  line-height: 22.2821px;
  text-transform: lowercase;
}

.hero-subline {
  margin: 0;
  color: var(--red);
  font-size: 19.8947px;
  font-weight: 700;
  letter-spacing: -0.795788px;
  line-height: 22.2821px;
}

.section-hero {
  padding: 0;
  align-items: flex-start;
}

.section-hero .section-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: none;
  margin: 0;
  padding: 0;

  isolation: isolate;
}

.section-hero .hero-topline {
  position: absolute;
  top: 20%;                  /* moved upward */
  left: 32%;     /* anchored to the red vertical line (slight gap) */
  padding-left: 0;           /* removed previous offset */
  margin: 0;
  text-align: left;
  transform: translateX(0);
}

.section-hero .hero-subline {
  position: absolute;
  top: 46%;                  /* moved slightly downward */
  left: 32%;     /* same horizontal anchor as the topline */
  padding-left: 0;           /* removed previous offset */
  margin: 0;
  text-align: left;
  transform: translateX(0);
}

.hero-logo {
  font-family: "Suisseintl Webxl", Arial, sans-serif;
  font-size: 16vw;
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.82;

  color: rgba(220, 0, 0, 0.75);

  position: absolute;
  left: 0;
  bottom: 17%;
  width: 100%;
  text-align: center;

  z-index: 2;

  mix-blend-mode: multiply;

  filter: saturate(1.2) contrast(1.05);
  text-shadow: 0 0 40px rgba(255, 0, 0, 0.15);
}

.section-kicker {
  margin: 0 0 16px;
  font-size: 19.8947px;
  font-weight: 1000;
  letter-spacing: -0.795788px;
  line-height: 10px;
  color: var(--red);
  text-transform: lowercase;
}

.headline-large {
color: rgba(220, 0, 0, 0.65); /* richer red */

font-size: 100px;
font-weight: 900;
letter-spacing: -5.81985px;
line-height: 75px;
text-transform: lowercase;
text-align: left;

/* richness effects */
mix-blend-mode: multiply;
filter: saturate(1.2) contrast(1.05);
text-shadow: 0 0 40px rgba(255, 0, 0, 0.15);

}

.section-services .headline-large {
  text-align: right;
}

.section-work .headline-large {
  text-align: right;
}

.headline-contact {
  font-size: 44.7703px;
  letter-spacing: -3.58163px;
  line-height: 39.3979px;
}

.headline-block {
  margin: 0 0 32px;
  color: var(--red);
  font-size: 84.5646px;
  font-weight: 900;
  letter-spacing: -7.61081px;
  line-height: 69.343px;
  text-transform: uppercase;
}

.body-copy {
  margin: 0 0 16px;
  max-width: 640px;
  font-size: 19.8947px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 25px;
  color: var(--red);
  text-align: left;
}

.section-services .body-copy,
.section-work .body-copy {
  text-align: left;
}

.work-placeholder {
  width: 100%;
  height: clamp(240px, 45vh, 380px);
  background-color: var(--red);
  margin-bottom: 16px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.work-item {
  width: 100%;
}

.footer-note {
  margin: 24px 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-grey-strong);
  font-family: 'Courier New', monospace;
}

.footer-version {
  margin: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-grey-strong);
}

.footer-copyright {
  margin: 8px 0 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-grey-strong);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.footer-link {
  color: var(--text-grey-strong);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--red);
}

.section-caption {
  margin: 0;
  font-size: 19.8947px;
  font-weight: 700;
  letter-spacing: -0.795788px;
  line-height: 22.2821px;
  color: var(--red);
}

.vision-bg {
  background-image: linear-gradient(
    135deg,
    #8a4b39 0%,
    #b0765a 25%,
    #cf9474 50%,
    #a05b3f 75%,
    #7e3a26 100%
  );
  background-size: 32px 32px;
  filter: saturate(0.9);
  opacity: 0.7;
}

.contact-availability {
  margin-top: 8px;
  color: var(--red);
}

.contact-links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-link {
  text-decoration: none;
  color: var(--text-grey-strong);
  font-size: 44.7703px;
  font-weight: 700;
  letter-spacing: -3.58163px;
  line-height: 39.3979px;
  text-transform: lowercase;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), color 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.contact-link:hover {
  color: var(--red);
  transform: translateX(8px) scale(1.02);
}

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

.footer-made {
  margin: 0 0 12px;
  color: var(--text-grey-strong);
  font-size: 44.7703px;
  font-weight: 700;
  letter-spacing: -3.58163px;
  line-height: 39.3979px;
  text-transform: lowercase;
}

.footer-made-accent {
  color: var(--red);
  font-weight: 800;
}

.footer-copy {
  max-width: 560px;
}

.work-placeholder {
  height: 200px;
  position: relative;    /* Make sure children like <video> can be positioned */
  overflow: hidden;      /* Hide anything overflowing the box */
}

.work-placeholder.work-video video {
  position: absolute;    /* Fill the placeholder completely */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Crop and scale video nicely */
  display: block;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 24px 20px;
  background-color: var(--red);
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
}

.cookie-title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
  text-transform: lowercase;
}

.cookie-subtitle {
  margin: 0;
  font-size: 14px;
}

.cookie-cta {
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  text-transform: lowercase;
}

@media (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
  }

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

  /* ---------------- NAV ---------------- */

  .nav {
    padding: 0 12px;
    height: 52px;
    font-size: clamp(12px, 3.2vw, 14px);
  }

  .nav-left { left: 12px; }
  .nav-right { right: 12px; gap: 12px; }

  .nav-center {
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-logo-text,
  .nav-link {
    font-size: clamp(11px, 3vw, 14px);
  }

  /* ---------------- THEME TOGGLE ---------------- */

  .theme-toggle { width: 48px; height: 24px; }

  .slider:before {
    width: 17px;
    height: 17px;
    left: 3px;
    bottom: 3px;
  }

  input:checked + .slider:before {
    transform: translateX(24px);
  }

  .moon-icon, .sun-icon { font-size: 10px; }
  .moon-icon { left: 5px; }
  .sun-icon { right: 5px; }

  /* ---------------- SECTIONS ---------------- */

  .section {
    padding: 72px 12px 40px;
    min-height: auto;
  }

  .section-hero {
    min-height: 100svh;
  }

  .section-hero .section-inner {
    height: 100svh;
    position: relative;
    isolation: isolate;
  }

  .section-services .section-inner,
  .section-work .section-inner,
  .section-contact .section-inner {
    isolation: isolate;
  }

  /* 🔥 RESTORE FOOTER BEHAVIOR (ONLY THIS SECTION) */
  .section-contact {
    min-height: 100svh;
    padding-bottom: 48px;
  }

  .section-contact .section-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* natural top ↔ bottom spacing */
    min-height: 100%;
  }

  /* ---------------- GRID ---------------- */

  .grid-vertical { left: 38%; }

  .grid,
  .grid-vertical,
  .grid-horizontal-1,
  .grid-horizontal-2,
  .grid-horizontal-3,
  .grid-horizontal-4,
  .grid-horizontal-5,
  .grid-horizontal-6 {
    z-index: 15;
  }

  /* ---------------- BG TEXT ---------------- */

  .section-hero .bg-text,
  .section-services .bg-text,
  .section-work .bg-text,
  .section-contact .bg-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0 12px;
    overflow: visible;
    pointer-events: none;
    z-index: 0;
  }

  .bg-text {
    font-size: clamp(20px, 5vw, 34px);
    letter-spacing: -0.05em;
    line-height: 0.82;
    filter: blur(1.6px);
    opacity: 0.78;
  }

  .bg-text-line {
    position: absolute;
    white-space: nowrap;
    z-index: 0;
  }

  /* ---------------- HERO TEXT ---------------- */

  .section-hero .hero-topline,
  .section-hero .hero-subline {
    left: 38%;
    font-size: clamp(14px, 3.4vw, 18px);
    line-height: 1.15;
    max-width: 58vw;
    white-space: normal;
    position: relative;
    z-index: 30;
  }

  .section-hero .hero-topline { top: 20%; }
  .section-hero .hero-subline { top: 46%; }

  .hero-logo {
    position: absolute;
    left: 12px;
    bottom: 23%;
    transform: translateY(50%);
    font-size: clamp(44px, 13vw, 84px);
    line-height: 0.82;
    z-index: 30;
  }

  /* ---------------- CONTENT ---------------- */

  .section-services .section-inner,
  .section-work .section-inner,
  .section-contact .section-inner {
    margin-left: 38%;
    padding-left: 12px;
    width: calc(62% - 12px);
    max-width: none;
  }

  .headline-large {
    font-size: clamp(28px, 7vw, 56px);
    line-height: 0.92;
    letter-spacing: -0.06em;
    margin: 0 0 18px;
    z-index: 30;
    position: relative;
  }

  .headline-contact {
    font-size: clamp(24px, 6vw, 40px);
    line-height: 0.95;
    letter-spacing: -0.06em;
  }

  .body-copy,
  .section-caption,
  .section-kicker {
    font-size: clamp(14px, 3.7vw, 17px);
    line-height: 1.25;
  }

  /* ---------------- CONTACT ELEMENTS ---------------- */

  .contact-link {
    font-size: clamp(20px, 5.5vw, 28px);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  /* 🔥 spacing now handled by flex, keep this minimal */
  .footer-made {
    margin-top: 0;
    font-size: clamp(20px, 5.5vw, 28px);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  .footer-note,
  .footer-version,
  .footer-copyright,
  .footer-link {
    font-size: 13px;
  }

  /* ---------------- WORK GRID ---------------- */

  .work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-placeholder {
    height: 180px;
  }

  .section-work .bg-text-line:nth-child(n+12):nth-child(-n+14) {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 0.9;
    letter-spacing: -0.06em;
  }

  /* ---------------- COOKIE ---------------- */

  .cookie-banner {
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-title {
    font-size: clamp(20px, 5vw, 24px);
  }

  .cookie-cta {
    font-size: clamp(18px, 4.5vw, 22px);
    align-self: flex-end;
  }
}