/* ============================================================
   SEVALmedia – styles_alt.css
   Editorial Brutalism
   ============================================================ */

:root {
  --accent: #FF2600;
  --black: #050505;
  --white: #FFFFFF;
  --grid-line: rgba(5, 5, 5, 0.12);
  --grid-line-dark: rgba(255, 38, 0, 0.25);
  --text-muted: #888888;
  --font-sans: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', 'Roboto Mono', Menlo, Courier, monospace;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

::selection {
  background: var(--black);
  color: var(--accent);
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Grid System ── */
.grid-system {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  pointer-events: none;
  z-index: 1;
}
.grid-line {
  border-right: 1px solid var(--grid-line);
  height: 100%;
}
.grid-line:last-child { border-right: none; }

/* ── Frame Lines ── */
.frame-top, .frame-bottom {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 1px;
  background: var(--black);
  z-index: 10;
}
.frame-top { top: 40px; }
.frame-bottom { bottom: 40px; }

/* ── Corner Brackets ── */
.corner-bracket {
  position: absolute;
  width: 15px; height: 15px;
  border: 2px solid var(--black);
}
.cb-tl { top: 40px; left: 20px; border-right: none; border-bottom: none; }
.cb-tr { top: 40px; right: 20px; border-left: none; border-bottom: none; }
.cb-bl { bottom: 40px; left: 20px; border-right: none; border-top: none; }
.cb-br { bottom: 40px; right: 20px; border-left: none; border-top: none; }

/* ── Hero Section ── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: var(--accent);
  color: var(--black);
  overflow: hidden;
}

/* ── Layout ── */
.layout-wrapper {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 5;
}

/* ── Header ── */
header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  height: 30px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  animation: fadeInTop 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo-block {
  grid-column: 1 / 4;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  background: var(--black);
  color: var(--accent);
  padding: 2px 6px;
  font-weight: 900;
}

nav {
  grid-column: 9 / 13;
  display: flex;
  justify-content: flex-end;
  gap: 2vw;
}
nav a {
  color: var(--black);
  text-decoration: none;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0%; height: 1px;
  background: var(--black);
  transition: width 0.3s ease;
}
nav a:hover::after { width: 100%; }

/* ── Hero ── */
.hero-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

.massive-text {
  font-size: 21vw;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: var(--black);
  white-space: nowrap;
  transform: translateZ(0);
  animation: slamIn 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  opacity: 0;
}
.massive-text span {
  display: block;
  text-align: center;
}
.line-seval { margin-left: -3vw; }
.line-media { margin-left: 3vw; }



.hero-logo-svg {
  width: 55vw;
  height: auto;
  fill: var(--black);
  pointer-events: none;
  animation: slamIn 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  opacity: 0;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 400;
  text-align: center;
  margin-top: 3vh;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0;
  animation: fadeInBottom 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.6s;
  pointer-events: auto;
}

.hero-arrow {
  width: clamp(40px, 5vw, 70px);
  height: auto;
  margin-top: clamp(40px, 8vh, 80px);
  opacity: 0;
  animation: fadeInBottom 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.9s;
}

.logo-ticker {
  position: absolute;
  left: -50vw;
  right: -50vw;
  top: 51%;
  transform: translateY(-50%);
  height: 20px;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 10;
}

.logo-ticker-content {
  display: flex;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 50px;
  padding-right: 50px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  animation: logoTickerScroll 20s linear infinite;
}

@keyframes logoTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ── Ticker ── */
.ticker-wrapper {
  position: absolute;
  left: 0; top: 50%;
  width: 100vw; height: 20px;
  background: var(--black);
  color: var(--accent);
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  overflow: hidden;
  z-index: 2;
}
.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: tickerFlow 25s linear infinite;
}
.ticker-item { padding-right: 50px; }

/* ── Footer ── */
footer {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  padding-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: fadeInBottom 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.meta-block { border-top: 1px solid var(--black); padding-top: 8px; }

.meta-manifesto {
  grid-column: 1 / 4;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  padding-right: 20px;
}

.meta-data {
  grid-column: 5 / 8;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-data span {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted var(--grid-line);
  padding-bottom: 2px;
}
.highlight-data {
  color: var(--accent);
  background: var(--black);
  padding: 0 4px;
}

.meta-action {
  grid-column: 10 / 13;
  display: flex;
  justify-content: flex-end;
  border-top: none;
  padding-top: 0;
}

.brutalist-btn {
  background: var(--black);
  color: var(--accent);
  border: none;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.brutalist-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.brutalist-btn:hover::before { transform: translateY(0); }
.brutalist-btn span {
  position: relative;
  z-index: 2;
}
.brutalist-btn:hover span { color: var(--black); }

/* ── Custom Cursor ── */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 16px; height: 16px;
  background-color: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  border-radius: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body:hover .custom-cursor { opacity: 1; }
.cursor-arrow-svg {
  width: 8px;
  height: 8px;
}

/* ── Animations ── */
@keyframes slamIn {
  0% { transform: scale(1.5) translateY(-10%); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes fadeInTop {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInBottom {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes tickerFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Noise Overlay ── */
.noise-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ── Trust Section ── */
.trust-section {
  position: relative;
  z-index: 5;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.trust-section .page-title {
  font-family: var(--font-sans);
  font-size: clamp(60px, 11vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: clamp(50px, 8vw, 80px);
  letter-spacing: -0.03em;
}

.trust-section .section-label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.trust-section .line {
  flex-grow: 1;
  height: 1px;
  background: var(--grid-line-dark);
}

.exp-list {
  display: flex;
  flex-direction: column;
}

.exp-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid var(--grid-line-dark);
  align-items: start;
  position: relative;
}
.exp-item:last-child {
  border-bottom: 1px solid var(--grid-line-dark);
}

.exp-item::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}
.exp-item:hover::before {
  transform: scaleX(1);
}

.exp-year {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  font-weight: 700;
}

.exp-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-client {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.exp-item:hover .exp-client {
  color: var(--accent);
}

.exp-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 500px;
  font-weight: 400;
}

.tag-strip-container {
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 38, 0, 0.02);
  border: 1px solid var(--grid-line-dark);
}

.tag-strip-header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.tag-strip-header .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.tag-item {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 24px;
}
.tag-item:not(:last-child)::after {
  content: '·';
  color: var(--accent);
  font-weight: bold;
}

/* ── Bento Projects Section ── */
.bento-section {
  position: relative;
  z-index: 5;
  padding: clamp(60px, 8vw, 100px) 0 0;
  border-top: 1px solid var(--grid-line-dark);
}

.bento-hero {
  padding: 0 10vw clamp(60px, 8vw, 100px);
}

.bento-hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.bento-hero-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.bento-mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.bento-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(60px, 11vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.bento-hero-desc {
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--grid-line-dark);
  border-top: 1px solid var(--grid-line-dark);
  padding: 0 10vw;
  background-clip: content-box;
  border-bottom: 1px solid var(--grid-line-dark);
  width: 100%;
}

/* Wide: info left, image right */
.bento-wide {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 1px;
  background: var(--grid-line-dark);
}

/* Wide reversed: image left, info right */
.bento-wide-rev {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 1px;
  background: var(--grid-line-dark);
}

/* Full width */
.bento-full {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--grid-line-dark);
}

/* Pair: two side by side */
.bento-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grid-line-dark);
}
.bento-half {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--grid-line-dark);
}

/* Cells */
.bento-cell {
  background: var(--black);
}
.bento-cell-info {
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: background-color 0.3s ease;
}
.group:hover .bento-cell-info {
  background-color: rgba(255, 38, 0, 0.03);
}

.bento-cell-info--compact {
  min-height: auto;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 3vw, 32px);
}

.bento-cell-info--horizontal {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 40px);
  min-height: auto;
}

.bento-cell-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bento-cell-bottom {
  margin-top: auto;
}
.bento-cell-bottom--right {
  text-align: right;
}

.bento-cell-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}
.bento-cell-img--square {
  aspect-ratio: 1;
  min-height: 350px;
}
.bento-cell-img--wide {
  aspect-ratio: 21 / 9;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s ease;
}
.group:hover .bento-img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1);
}

.bento-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
  filter: grayscale(1) contrast(1.1);
  transition: opacity 0.4s ease, filter 0.5s ease;
}
.group:hover .bento-video {
  opacity: 1;
  filter: grayscale(0) contrast(1);
}

.bento-slideshow-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
  filter: grayscale(1) contrast(1.1);
  transition: opacity 0.5s ease, filter 0.5s ease;
}
.group:hover .bento-slideshow-img {
  filter: grayscale(0) contrast(1);
}
.bento-slideshow-img.is-visible {
  opacity: 1;
}

.bento-img-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

.bento-num {
  font-family: var(--font-mono);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}
.bento-num--large {
  font-size: clamp(52px, 7vw, 80px);
}

.bento-mono-sm {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
}

.bento-tags {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: right;
  line-height: 1.5;
}

.bento-tags-inline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 12px;
}

.bento-project-name {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.group:hover .bento-project-name {
  color: var(--accent);
}
.bento-project-name--large {
  font-size: clamp(40px, 6vw, 72px);
}

.bento-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Reference Bar ── */
.ref-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  margin-top: clamp(40px, 5vw, 80px);
  background: #7a1400;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.ref-bar:hover {
  background: var(--accent);
  color: var(--black);
}

/* ── Slider Embed ── */
.bento-slider-wrap {
  background: var(--black);
}
/* ── Slider Override: match Editorial Brutalism ── */
.bento-slider-wrap .ps-section {
  padding: clamp(40px, 5vw, 80px) 0;
  overflow: hidden;
  border-bottom: none;
}

/* Caption */
.bento-slider-wrap .ps-caption {
  font-family: var(--font-sans);
}
.bento-slider-wrap .ps-cap-cat {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bento-slider-wrap .ps-cap-cat::before {
  content: '// ';
  color: var(--accent);
}
.bento-slider-wrap .ps-cap-title {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Navigation */
.bento-slider-wrap .ps-btn {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 0;
}
.bento-slider-wrap .ps-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}
.bento-slider-wrap .ps-counter {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.bento-slider-wrap .ps-curr {
  color: var(--white);
}

/* Cards */
.bento-slider-wrap .ps-card {
  background: var(--black);
}
.bento-slider-wrap .ps-num {
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* Slider: side cards black & white, active card in color */
.bento-slider-wrap .ps-card .ps-img,
.bento-slider-wrap .ps-card .ps-video,
.bento-slider-wrap .ps-card .ps-slideshow img {
  filter: grayscale(1);
  transition: filter 0.4s ease;
}
.bento-slider-wrap .ps-card.is-active .ps-img,
.bento-slider-wrap .ps-card.is-active .ps-video,
.bento-slider-wrap .ps-card.is-active .ps-slideshow img {
  filter: grayscale(0);
}

/* Custom cursor states for slider */
.custom-cursor.cursor-arrow-left,
.custom-cursor.cursor-arrow-right,
.custom-cursor.cursor-dot {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-cursor.cursor-arrow-left svg,
.custom-cursor.cursor-arrow-right svg {
  width: 14px;
  height: 14px;
}
.custom-cursor.cursor-dot svg {
  width: 10px;
  height: 10px;
}

/* Override native cursors – custom div cursor handles it */
.bento-slider-wrap .ps-card.is-prev,
.bento-slider-wrap .ps-card.is-next,
.bento-slider-wrap .ps-card.is-active {
  cursor: none;
}

/* More Button */
.bento-slider-wrap .ps-more-btn {
  border-color: var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
}
.bento-slider-wrap .ps-more-btn:hover {
  background: var(--accent);
  color: var(--black);
}

/* ── Studio Section ── */
.studio-section {
  position: relative;
  z-index: 5;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--grid-line-dark);
}

.studio-title {
  font-family: var(--font-sans);
  font-size: clamp(60px, 12vw, 180px);
  font-weight: 900;
  line-height: 0.8;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: clamp(30px, 4vw, 50px);
  letter-spacing: -0.03em;
}

.studio-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.studio-portrait {
  width: clamp(280px, 28vw, 440px);
  position: sticky;
  top: clamp(80px, 10vw, 120px);
  margin-left: calc(-1 * clamp(24px, 6vw, 80px));
}
.studio-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.studio-content {}

.studio-label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.studio-line {
  flex-grow: 1;
  height: 1px;
  background: var(--grid-line-dark);
}

.highlight-accent { color: var(--accent); }

.philosophy-text {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 50px;
  color: var(--white);
}

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

.p-item h3 {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.p-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Leistungen Section ── */
.services-section {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--grid-line-dark);
}

.services-hero {
  padding: clamp(60px, 8vw, 100px) 10vw clamp(40px, 5vw, 60px);
}

.services-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(60px, 11vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.services-hero-desc {
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grid-line-dark);
  border-top: 1px solid var(--grid-line-dark);
}

.service-card {
  background: var(--black);
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background-color: rgba(255, 38, 0, 0.03);
}
.service-card-icon {
  position: absolute;
  bottom: clamp(20px, 3vw, 40px);
  right: clamp(20px, 3vw, 40px);
  width: clamp(48px, 5vw, 72px);
  height: auto;
  color: var(--accent);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.service-card:hover .service-card-icon {
  opacity: 0.15;
  transform: translateY(0);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.service-card-tags {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.service-card-num {
  font-family: var(--font-mono);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: color 0.5s ease;
}
.group:hover .service-card-num {
  color: rgba(255, 38, 0, 0.08);
}

.service-card-bottom {}

.service-card-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.group:hover .service-card-title {
  color: var(--accent);
}

.service-card-desc {
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
}

/* ── Site Footer ── */
.site-footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(120px, 15vw, 200px);
  background: var(--accent);
  text-decoration: none;
  transition: background 0.3s ease;
}
.site-footer-cta:hover { background: #cc1f00; }

.site-footer-cta-text {
  font-family: var(--font-sans);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer-cta-arrow {
  width: clamp(24px, 3vw, 48px);
  height: auto;
}

.site-footer {
  background: var(--black);
  padding: clamp(40px, 5vw, 80px) 10vw;
  border-top: 1px solid var(--grid-line-dark);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  max-width: 1400px;
  margin: 0 auto;
}

.site-footer-brand {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
  line-height: 1.7;
}

.site-footer-brand strong {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.site-footer-col a,
.site-footer-col span {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--text-muted);
  text-decoration: none;
  line-height: 2;
  transition: color 0.3s ease;
}

.site-footer-col a:hover { color: var(--white); }

.site-footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: clamp(24px, 3vw, 40px);
  margin-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--grid-line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer-bottom a:hover { color: var(--accent); }

.site-footer-legal {
  display: flex;
  gap: 24px;
}

/* ── Impressum Accordion ── */
.impressum-toggle {
  display: block; width: 100%; background: none; border: none; border-top: 1px solid var(--grid-line);
  padding: 20px 10vw; cursor: pointer; text-align: left;
  font-family: var(--font-mono); font-size: 10px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.15em; transition: color 0.3s ease;
}
.impressum-toggle:hover { color: var(--accent); }
.impressum-toggle::after {
  content: '+'; float: right; font-size: 14px; line-height: 1; transition: transform 0.3s ease;
}
.impressum-toggle.is-open::after { transform: rotate(45deg); }
.impressum-content {
  max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.3s ease;
  background: var(--black); padding: 0 10vw;
}
.impressum-content.is-open { padding-bottom: 40px; }
.impressum-inner {
  max-width: 640px; padding-top: 24px;
  font-family: var(--font-sans); font-size: clamp(12px, 1vw, 14px);
  color: var(--text-muted); line-height: 1.8;
}
.impressum-inner h3 {
  font-family: var(--font-mono); font-size: 10px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.15em; margin: 24px 0 8px 0;
}
.impressum-inner h3:first-child { margin-top: 0; }
.impressum-inner p { margin: 0 0 4px 0; }
.impressum-inner a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.impressum-inner a:hover { color: var(--white); }
.impressum-source {
  margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--grid-line);
  font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); opacity: 0.5;
}

@media (max-width: 768px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer { padding: 40px 6vw; }
  .site-footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .massive-text { font-size: 24vw; }
  footer { grid-template-columns: repeat(6, 1fr); gap: 20px; }
  .meta-manifesto { grid-column: 1 / 4; }
  .meta-data { grid-column: 4 / 7; }
  .meta-action { display: none; }
  .exp-item {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 30px 0;
  }
  .exp-year { margin-top: 0; }
  .exp-client { font-size: 26px; }
  .bento-wide, .bento-wide-rev { grid-template-columns: 1fr; }
  .bento-pair { grid-template-columns: 1fr; }
  .bento-cell-info { min-height: 200px; }
  .bento-cell-info--horizontal { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card-top { margin-bottom: 20px; }
}

@media (pointer: coarse) {
  *, *::before, *::after { cursor: auto; }
  .custom-cursor { display: none !important; }
}

@media (max-width: 768px) {
  .massive-text { font-size: 28vw; line-height: 0.82; }
  .line-seval { margin-left: 0; }
  .line-media { margin-left: 0; }
  header nav { display: none; }
  footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 40px;
  }
  .meta-block {
    border-top: 1px solid var(--black);
    padding-top: 10px;
    margin-bottom: 10px;
  }
  .meta-manifesto { padding-right: 0; }
  .tag-item { font-size: 11px; gap: 15px; }
  .tag-strip-container { padding: 25px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .studio-layout { grid-template-columns: 1fr; }
  .studio-portrait { width: 60%; max-width: 280px; margin-left: auto; margin-right: auto; order: -1; position: static; }
  .studio-content { order: 1; }
  .desktop-br { display: none; }
  .hero-arrow { margin-top: clamp(24px, 5vh, 60px); }
}

@media (max-width: 480px) {
  .hero-logo-svg { width: 80vw; }
  .hero-sub { font-size: 9px; }
  .hero-arrow { width: 30px; }
  .hero footer { padding-bottom: 60px; gap: 16px; }
  .meta-block { font-size: 9px; }
  .meta-data span { font-size: 9px; }
  .highlight-data { font-size: 9px; }
  .corner-bracket { transform: scale(0.7); }
  .studio-title { font-size: 40px; }
  .philosophy-text { font-size: 18px; }
  .p-item h3 { font-size: 13px; }
  .p-item p { font-size: 12px; }
  .bento-hero-title,
  .services-hero-title,
  .trust-section .page-title { font-size: 40px; }
  .bento-hero,
  .services-hero { padding-left: 5vw; padding-right: 5vw; }
  .bento-grid { padding: 0 5vw; }
  .exp-client { font-size: 20px; }
  .exp-year { font-size: 12px; }
  .service-card { min-height: auto; padding: 20px; }
  .service-card-top { margin-bottom: 16px; }
  .service-card-title { font-size: 18px; margin-bottom: 8px; }
  .service-card-desc { font-size: 12px; }
  .ref-bar { height: 100px; font-size: 20px; }
  .archive-title { font-size: 28px; }
  .archive-cat,
  .archive-tags { font-size: 9px; }
  .archive-list { padding: 0 5vw; }
}

/* ── Sticky CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--black);
  text-decoration: none;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  pointer-events: none;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover {
  background: var(--white);
}
.sticky-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .sticky-cta { bottom: 20px; right: 20px; padding: 10px 18px; font-size: 10px; }
  .sticky-cta span { display: none; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Page Transition ── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.page-transition.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Lightbox ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 5, 5, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  font-family: var(--font-mono);
  line-height: 1;
  transition: color 0.3s ease;
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  padding: 20px;
  font-family: var(--font-mono);
  transition: color 0.3s ease;
}
.lightbox-nav:hover { color: var(--accent); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

