/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --ink:       #0E0C0A;
  --cream:     #F3EDE3;
  --terra:     #C4521C;
  --stone:     #8A837A;
  --carbon:    #2A2520;
  --edge:      #E4DDD2;
  --edge-dark: rgba(255,255,255,0.07);
  --nav-h:     72px;
  --ff-d:      'Cormorant Garamond', Georgia, serif;
  --ff-s:      'Outfit', sans-serif;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 20px; overflow-x: hidden; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-s);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--terra);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: normal;
}
.cursor.grow {
  width: 48px; height: 48px;
  background: rgba(196, 82, 28, 0.15);
  border: 1px solid var(--terra);
}
@media (hover: none) { .cursor { display: none; } body { cursor: auto; } }

/* ── SCROLL REVEAL ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(14, 12, 10, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--edge-dark);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-am {
  font-family: var(--ff-s);
  font-weight: 800;
  font-size: 26px;
  color: var(--cream);
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.nav-logo-rule {
  width: 28px; height: 2px;
  background: var(--terra);
  margin: 5px 0 4px;
}
.nav-logo-studio {
  font-family: var(--ff-s);
  font-weight: 200;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243,237,227,0.65);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--edge-dark);
  border-radius: 2px;
  padding: 4px;
}
.lang-btn {
  font-family: var(--ff-s);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border: none;
  background: transparent;
  color: rgba(243,237,227,0.5);
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.25s, color 0.25s;
}
.lang-btn.active {
  background: var(--terra);
  color: var(--cream);
}

.nav-cta {
  font-family: var(--ff-s);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--terra);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: #A8441A; transform: translateY(-1px); }
.nav-cta svg { width: 12px; height: 12px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 32px;
  font-family: var(--ff-d);
  color: var(--cream);
  text-decoration: none;
  font-style: italic;
  font-weight: 300;
}
.mobile-menu a:hover { color: var(--terra); }
.mobile-menu .lang-toggle { margin-top: 20px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 56px 80px;
  position: relative;
  overflow: hidden;
  --hero-x: 0px;
  --hero-y: 0px;
}

/* Grain texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.35;
  pointer-events: none;
}

/* Warm radial glow */
#hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,82,28,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  bottom: -60px; right: -20px;
  font-family: var(--ff-s);
  font-weight: 800;
  font-size: clamp(180px, 22vw, 320px);
  color: rgba(243,237,227,0.025);
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-kinetic {
  position: absolute;
  top: 50%;
  right: clamp(36px, 8vw, 128px);
  width: clamp(260px, 34vw, 520px);
  aspect-ratio: 1;
  transform: translate3d(var(--hero-x), calc(-50% + var(--hero-y)), 0);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: kineticIntro 1.2s var(--ease) 0.55s forwards;
}

.hero-kinetic::before,
.hero-kinetic::after {
  content: '';
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(243,237,227,0.08);
  transform: rotate(-9deg);
}

.hero-kinetic::after {
  inset: 20%;
  border-color: rgba(196,82,28,0.18);
  transform: rotate(16deg);
  animation: frameDrift 12s ease-in-out infinite alternate;
}

.kinetic-orbit {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  animation: orbitFloat 8s ease-in-out infinite;
}

.orbit-ring,
.orbit-axis,
.orbit-node,
.orbit-core {
  position: absolute;
  display: block;
}

.orbit-ring {
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(243,237,227,0.12);
}

.orbit-ring-1 {
  border-top-color: rgba(196,82,28,0.72);
  border-right-color: rgba(196,82,28,0.2);
  animation: spinOrbit 16s linear infinite;
}

.orbit-ring-2 {
  inset: 14%;
  border-color: rgba(243,237,227,0.07);
  border-bottom-color: rgba(196,82,28,0.52);
  transform: rotate(28deg);
  animation: spinOrbitReverse 22s linear infinite;
}

.orbit-axis {
  left: 50%;
  top: 50%;
  width: 108%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243,237,227,0.16), transparent);
  transform-origin: center;
}

.orbit-axis-x { transform: translate(-50%, -50%) rotate(-18deg); }
.orbit-axis-y { transform: translate(-50%, -50%) rotate(68deg); }

.orbit-node {
  width: clamp(8px, 1vw, 13px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 26px rgba(196,82,28,0.55);
}

.orbit-node-1 { top: 5%; left: 63%; animation: nodePulse 2.8s ease-in-out infinite; }
.orbit-node-2 { top: 46%; right: -1%; animation: nodePulse 3.4s ease-in-out 0.45s infinite; }
.orbit-node-3 { bottom: 9%; left: 22%; animation: nodePulse 3.1s ease-in-out 0.9s infinite; }
.orbit-node-4 {
  top: 22%;
  left: 5%;
  background: var(--cream);
  box-shadow: 0 0 22px rgba(243,237,227,0.25);
  animation: nodePulse 3.6s ease-in-out 1.2s infinite;
}

.orbit-core {
  left: 50%;
  top: 50%;
  width: clamp(86px, 10vw, 132px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243,237,227,0.14);
  background: rgba(14,12,10,0.52);
  color: rgba(243,237,227,0.78);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.06em;
  transform: translate(-50%, -50%) rotate(-7deg);
  box-shadow: inset 0 0 46px rgba(196,82,28,0.1), 0 18px 80px rgba(0,0,0,0.22);
}

.kinetic-card {
  position: absolute;
  min-width: 84px;
  padding: 9px 14px;
  border: 1px solid rgba(243,237,227,0.12);
  background: rgba(14,12,10,0.58);
  color: rgba(243,237,227,0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: cardFloat 6s ease-in-out infinite;
}

.kinetic-card::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: var(--terra);
  box-shadow: 0 0 16px rgba(196,82,28,0.7);
}

.kinetic-card-1 { top: 8%; right: 8%; }
.kinetic-card-2 { left: 2%; bottom: 24%; animation-delay: -1.8s; }
.kinetic-card-3 { right: 0; bottom: 8%; animation-delay: -3.4s; }

#hero > .hero-label,
#hero > .hero-h1,
#hero > .hero-h2,
#hero > .hero-sub,
#hero > .hero-actions {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.7s var(--ease) 0.2s both;
}
.hero-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--terra);
  display: block;
}

.hero-h1 {
  font-family: var(--ff-d);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 8vw, 110px);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 8px;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}

.hero-h2 {
  font-family: var(--ff-s);
  font-weight: 800;
  font-size: clamp(36px, 8vw, 110px);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}
.hero-h2 .accent { color: var(--terra); }

.hero-sub {
  font-family: var(--ff-s);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--stone);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 52px;
  animation: fadeUp 0.8s var(--ease) 0.65s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.8s both;
}

.btn-primary {
  font-family: var(--ff-s);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--terra);
  color: var(--cream);
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s var(--ease), transform 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover { background: #A8441A; transform: translateY(-2px); }

.btn-ghost {
  font-family: var(--ff-s);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 36px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(243,237,227,0.2);
  text-decoration: none;
  border-radius: 1px;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.btn-ghost:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.8s var(--ease) 1s both;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--stone);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--terra);
  animation: scrollLine 2s ease-in-out 1.5s infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 0%; }
  100% { left: 100%; }
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
}

.hero-badges {
  position: absolute;
  bottom: 40px; right: 56px;
  display: flex;
  gap: 8px;
  animation: fadeUp 0.8s var(--ease) 1.1s both;
}
.badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border: 1px solid var(--edge-dark);
  color: var(--stone);
  border-radius: 1px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes kineticIntro {
  from { opacity: 0; transform: translate3d(calc(var(--hero-x) + 36px), calc(-50% + var(--hero-y)), 0) scale(0.96); }
  to { opacity: 1; transform: translate3d(var(--hero-x), calc(-50% + var(--hero-y)), 0) scale(1); }
}

@keyframes spinOrbit {
  to { transform: rotate(360deg); }
}

@keyframes spinOrbitReverse {
  to { transform: rotate(-332deg); }
}

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

@keyframes frameDrift {
  to { transform: rotate(25deg) scale(0.95); }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.45); opacity: 1; }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* SIGNAL STRIP */
.signal-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--edge);
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 2px;
  padding: 0 56px;
}

.signal-copy,
.signal-track {
  min-height: 112px;
  display: flex;
  align-items: center;
}

.signal-copy {
  border-right: 1px solid var(--edge);
  padding-right: 40px;
  gap: 18px;
}

.signal-copy span {
  flex: 0 0 auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
}

.signal-copy strong {
  font-family: var(--ff-d);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
}

.signal-track {
  padding-left: 40px;
  gap: 10px;
  flex-wrap: wrap;
}

.signal-track span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--edge);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255,255,255,0.24);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.signal-track span:hover {
  color: var(--ink);
  border-color: rgba(196,82,28,0.35);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#leistungen {
  background: var(--cream);
  padding: 120px 56px;
}

.services-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 76px;
}

.services-copy .section-intro { margin-bottom: 0; }

.service-index {
  border-top: 1px solid var(--edge);
}

.service-index-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--edge);
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.25s var(--ease);
}

.service-index-row:hover {
  color: var(--terra);
  padding-left: 10px;
}

.service-index-num {
  font-family: var(--ff-d);
  font-size: 22px;
  font-style: italic;
  color: var(--terra);
  line-height: 1;
  padding-top: 4px;
}

.service-index-row strong {
  display: block;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.service-index-row small {
  display: block;
  max-width: 520px;
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--terra);
}

.section-title {
  font-family: var(--ff-d);
  font-size: clamp(26px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
}

.section-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--edge);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { background: #EAE2D6; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 32px;
  color: var(--terra);
}

.service-num {
  position: absolute;
  top: 44px; right: 44px;
  font-family: var(--ff-d);
  font-size: 64px;
  font-weight: 700;
  color: rgba(14,12,10,0.04);
  line-height: 1;
  pointer-events: none;
}

.service-title {
  font-family: var(--ff-s);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.service-list li {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.7;
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: 11px;
}

.service-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s;
}
.service-link:hover { gap: 14px; }

/* ══════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════ */
#portfolio {
  background: var(--carbon);
  padding: 120px 56px;
}

#portfolio .section-title { color: var(--cream); }
#portfolio .section-intro { color: var(--stone); }
#portfolio .section-eyebrow { color: var(--terra); }
#portfolio .section-eyebrow::before { background: var(--terra); }

/* ══════════════════════════════════════════
   PORTFOLIO — WERK LIST
══════════════════════════════════════════ */
.werk-list {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 64px;
}

.werk-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.3s var(--ease);
}

.werk-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(196,82,28,0.03);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.werk-item:hover::before { opacity: 1; }

.werk-num {
  font-family: var(--ff-d);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: rgba(243,237,227,0.07);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
  transition: color 0.35s var(--ease);
}
.werk-item:hover .werk-num { color: rgba(196,82,28,0.22); }

.werk-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.werk-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.werk-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
}

.werk-cat-sep {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  font-weight: 300;
  line-height: 1;
}

.werk-title {
  font-family: var(--ff-d);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  transition: color 0.25s;
}

.werk-desc {
  font-family: var(--ff-s);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  max-width: 480px;
}

.werk-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(243,237,227,0.35);
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
}
.werk-link:hover {
  border-color: var(--terra);
  color: var(--terra);
  background: rgba(196,82,28,0.08);
  transform: translateX(4px);
}

.portfolio-cta {
  text-align: center;
}
.portfolio-cta p {
  font-family: var(--ff-d);
  font-style: italic;
  font-size: 18px;
  color: var(--stone);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   CONCEPT PROJECT
══════════════════════════════════════════ */
#concept-project {
  background: var(--ink);
  padding: 120px 56px;
}
#concept-project .section-title { color: var(--cream); }
#concept-project .section-intro { color: var(--stone); }
#concept-project .section-eyebrow { color: var(--terra); }
#concept-project .section-eyebrow::before { background: var(--terra); }

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 64px;
}

.concept-card {
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.concept-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

.concept-card-header {
  padding: 52px 40px 40px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.concept-card--kuro .concept-card-header  { background: #0d0d0d; }
.concept-card--wilhelm .concept-card-header { background: #1a3528; }

.concept-bg-word {
  position: absolute;
  font-family: var(--ff-d);
  font-size: 9rem;
  font-weight: 300;
  font-style: italic;
  opacity: 0.05;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  user-select: none;
  pointer-events: none;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}

.concept-badge {
  display: inline-block;
  font-family: var(--ff-s);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid;
  border-radius: 1px;
  margin-bottom: 22px;
  width: fit-content;
}
.concept-card--kuro .concept-badge {
  color: rgba(180,40,40,0.9);
  border-color: rgba(180,40,40,0.38);
}
.concept-card--wilhelm .concept-badge {
  color: rgba(200,169,110,0.9);
  border-color: rgba(200,169,110,0.38);
}

.concept-brand-name {
  font-family: var(--ff-d);
  font-size: clamp(20px, 3vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.concept-brand-sub {
  font-family: var(--ff-s);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.concept-card-body {
  padding: 26px 40px 30px;
  background: var(--carbon);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.concept-card-desc {
  font-family: var(--ff-s);
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
}

.concept-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(243,237,227,0.35);
  flex-shrink: 0;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
}
.concept-card:hover .concept-arrow {
  border-color: var(--terra);
  color: var(--terra);
  background: rgba(196,82,28,0.08);
  transform: translateX(4px);
}

.concept-note {
  text-align: center;
  margin-top: 48px;
}
.concept-note p {
  font-family: var(--ff-d);
  font-style: italic;
  font-size: 15px;
  color: var(--stone);
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
#sobre-nosotros {
  background: var(--cream);
  padding: 120px 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-title { margin-bottom: 28px; }

.about-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-text strong { color: var(--ink); font-weight: 600; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.stat-cell {
  background: var(--edge);
  padding: 28px 24px;
}

.stat-num {
  font-family: var(--ff-d);
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--terra); }

.stat-label {
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--ink);
  padding: 64px 52px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,82,28,0.2), transparent 70%);
}

.about-card-quote {
  font-family: var(--ff-d);
  font-size: clamp(18px, 3vw, 36px);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 32px;
}
.about-card-quote strong {
  font-weight: 600;
  font-style: normal;
  color: var(--terra);
}

.about-langs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lang-chip {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  border: 1px solid var(--edge-dark);
  color: rgba(243,237,227,0.6);
  border-radius: 1px;
}
.lang-chip.active-chip {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--cream);
}

.about-byline {
  position: absolute;
  bottom: 28px; right: 28px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(243,237,227,0.2);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#kontakt {
  background: var(--ink);
  padding: 120px 56px;
}

#kontakt .section-title { color: var(--cream); }
#kontakt .section-intro { color: var(--stone); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.form-input, .form-select, .form-textarea {
  font-family: var(--ff-s);
  font-size: 14px;
  font-weight: 300;
  color: var(--cream);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--edge-dark);
  padding: 14px 18px;
  border-radius: 1px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--terra);
  background: rgba(196,82,28,0.04);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(138,131,122,0.5);
}
.form-select option { background: var(--ink); color: var(--cream); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  font-family: var(--ff-s);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--terra);
  color: var(--cream);
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  width: 100%;
  margin-top: 8px;
}
.form-submit:hover { background: #A8441A; transform: translateY(-2px); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  padding: 28px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s;
}
.whatsapp-cta:hover { background: rgba(37,211,102,0.15); }

.wa-icon {
  width: 48px; height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-icon svg { width: 26px; height: 26px; fill: white; }

.wa-text-primary {
  font-weight: 600;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 4px;
}
.wa-text-sub {
  font-size: 12px;
  color: var(--stone);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--edge-dark);
}
.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 32px; height: 32px;
  background: var(--edge-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 14px; height: 14px; stroke: var(--terra); }

.contact-item-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); }
.contact-item-value { font-size: 14px; color: var(--cream); margin-top: 2px; }
.contact-item-value a { color: var(--cream); text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--terra); }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--terra); margin-bottom: 20px; }
.form-success h3 { font-family: var(--ff-d); font-size: 32px; font-style: italic; color: var(--cream); margin-bottom: 10px; }
.form-success p { color: var(--stone); font-size: 14px; }

/* Footer: see js/footer.js */

/* ══════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}
.wa-fab svg { width: 28px; height: 28px; fill: white; }

.wa-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.5s ease-out 1.5s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 220;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
  background: rgba(14, 12, 10, 0.97);
  color: var(--cream);
  border: 1px solid rgba(243, 237, 227, 0.10);
  border-top: 2px solid var(--terra);
  border-radius: 2px;
  box-shadow: 0 24px 64px rgba(14, 12, 10, 0.5);
  backdrop-filter: blur(20px);
  transform: translateY(calc(100% + 48px));
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease,
    visibility 0s linear 0.65s;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease,
    visibility 0s linear 0s;
}
body.cookie-visible .wa-fab { bottom: 108px; }

/* Cookie settings trigger (reabre el banner) */
.cookie-settings-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 219;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(14, 12, 10, 0.88);
  border: 1px solid rgba(243, 237, 227, 0.13);
  color: var(--stone);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.75);
}
.cookie-settings-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.cookie-settings-btn:hover {
  color: var(--terra);
  border-color: rgba(196, 82, 28, 0.55);
  transform: scale(1.08);
}
.cookie-settings-btn svg {
  width: 16px;
  height: 16px;
}

.cookie-kicker {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid var(--edge-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
}

.cookie-copy h2 {
  font-family: var(--ff-d);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 4px;
}
.cookie-copy p {
  max-width: 650px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--stone);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn,
.cookie-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 1px;
  font-family: var(--ff-s);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.cookie-btn:hover,
.cookie-link:hover { transform: translateY(-1px); }

.cookie-btn-primary {
  background: var(--terra);
  border: 1px solid var(--terra);
  color: var(--cream);
}
.cookie-btn-primary:hover {
  background: #A8441A;
  border-color: #A8441A;
}
.cookie-btn-secondary,
.cookie-link {
  background: transparent;
  border: 1px solid var(--edge-dark);
  color: var(--cream);
}
.cookie-btn-secondary:hover,
.cookie-link:hover {
  border-color: rgba(243, 237, 227, 0.32);
  color: var(--terra);
}

@media (max-width: 960px) {
  nav { padding: 0 28px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  #hero { padding: calc(var(--nav-h) + 24px) 28px 64px; }
  .hero-badges { right: 28px; }
  .hero-scroll { left: 28px; }
  .hero-bg-text { display: none; }
  .hero-kinetic {
    top: auto;
    right: auto;
    bottom: 54px;
    left: 50%;
    width: clamp(300px, 58vw, 390px);
    transform: translate3d(calc(-50% + var(--hero-x)), var(--hero-y), 0);
    opacity: 0.62;
    animation: none;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    padding: 0 28px;
  }
  .signal-copy {
    border-right: 0;
    border-bottom: 1px solid var(--edge);
    padding-right: 0;
    min-height: auto;
    padding: 32px 0 28px;
    align-items: flex-start;
    flex-direction: column;
  }
  .signal-track {
    min-height: auto;
    padding: 24px 0;
  }
  .services-editorial {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-bottom: 52px;
  }

  #leistungen, #portfolio, #concept-project, #sobre-nosotros, #kontakt { padding: 80px 28px; }

  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .concept-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
  .werk-item { grid-template-columns: 56px 1fr auto; gap: 24px; padding: 32px 0; }
  .werk-num { font-size: 44px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
  }
  .cookie-kicker {
    border-right: 0;
    border-bottom: 1px solid var(--edge-dark);
    padding: 0 0 12px;
  }
  .cookie-actions { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .hero-label { align-items: flex-start; }
  .hero-label::before { margin-top: 3px; flex-shrink: 0; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .hero-kinetic {
    bottom: 104px;
    width: clamp(240px, 76vw, 300px);
    opacity: 0.34;
  }
  .kinetic-card { display: none; }
  .werk-item { grid-template-columns: 1fr auto; gap: 16px; padding: 28px 0; }
  .concept-card-header { padding: 36px 24px 28px; }
  .concept-card-body { padding: 20px 24px 22px; }
  .werk-num { display: none; }
  .service-index-row { grid-template-columns: 38px 1fr; gap: 14px; }
  .signal-track span { font-size: 9px; padding: 6px 10px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-badges { display: none; }
  #hero { padding: calc(var(--nav-h) + 16px) 20px 40px; }
  .stat-num { font-size: 32px; }
  .section-intro { font-size: 15px; }
  body.cookie-visible .wa-fab { bottom: 260px; }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }
  .cookie-copy h2 { font-size: 22px; }
  .cookie-copy p { font-size: 12px; }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-btn,
  .cookie-link { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kinetic,
  .hero-kinetic::after,
  .kinetic-orbit,
  .orbit-ring-1,
  .orbit-ring-2,
  .orbit-node,
  .kinetic-card,
  .scroll-line::after {
    animation: none;
  }
  .hero-kinetic { opacity: 0.68; }
}

/* ══════════════════════════════════════════
   PORTFOLIO MODAL
══════════════════════════════════════════ */
.pm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(14,12,10,0.6);
  backdrop-filter: blur(4px);
}
.pm-overlay.open { display: flex; }

.pm-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pm-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(14,12,10,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 301;
  transition: background 0.2s;
}
.pm-close:hover { background: rgba(196,82,28,0.6); }
.pm-close svg { width: 18px; height: 18px; }

.pm-left {
  background: var(--carbon);
  padding: 56px 52px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pm-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pm-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px;
}
.pm-tag:first-child { background: var(--terra); color: var(--cream); }
.pm-tag:not(:first-child) { border: 1px solid var(--edge-dark); color: var(--stone); }

.pm-client {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
}

.pm-title {
  font-family: var(--ff-d);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
}

.pm-desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.75;
}

.pm-brief {
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--terra);
  padding: 20px 24px;
}
.pm-brief-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}
.pm-brief-quote {
  font-family: var(--ff-d);
  font-style: italic;
  font-size: 15px;
  color: var(--cream);
  line-height: 1.65;
}

.pm-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.pm-meta-cell {
  background: rgba(255,255,255,0.03);
  padding: 16px 20px;
}
.pm-meta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}
.pm-meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
}

.pm-stats {
  display: flex;
  gap: 40px;
}
.pm-stat-num {
  font-family: var(--ff-d);
  font-size: 40px;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 4px;
}
.pm-stat-label {
  font-size: 11px;
  color: var(--stone);
  line-height: 1.4;
  max-width: 120px;
}

.pm-visit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid var(--terra);
  padding-bottom: 3px;
  transition: gap 0.25s;
  align-self: flex-start;
}
.pm-visit-link:hover { gap: 14px; }

.pm-right {
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pm-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .pm-content { grid-template-columns: 1fr; }
  .pm-right { display: none; }
  .pm-left { padding: 60px 24px 40px; }
}

