/* ============================================================
   53 TAKES — STYLE.CSS
   Creative Studio Bonn
   ============================================================ */

/* ============================================================
   CSS VARIABLES — Global Design Tokens
   Modify these to adjust the entire color system
============================================================ */
:root {
  /* Colors */
  --color-bg:           #050505;
  --color-surface:      #101010;
  --color-surface-2:    #181818;
  --color-text-primary: #F5F5F2;
  --color-text-secondary: #969696;
  --color-text-tertiary:  #4a4a4a;
  --color-line:         #262626;
  --color-line-light:   #1e1e1e;
  --color-accent:       #F5F5F2;
  --color-bg-light:     #F2F2EE;
  --color-text-dark:    #080808;

  /* Typography */
  --font-display: 'Inter Tight', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', 'Arial', sans-serif;

  /* Sizing */
  --navbar-height: 72px;
  --section-padding: 160px;
  --container-max: 1400px;
  --container-pad: clamp(24px, 5vw, 80px);

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:   200ms;
  --duration-normal: 400ms;
  --duration-slow:   700ms;
  --duration-reveal: 1000ms;
}


/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: clip;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-text-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Reduced motion — disable animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }

  .stmt-word {
    color: var(--color-text-primary) !important;
  }
}


/* ============================================================
   UTILITY
============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  opacity: 0.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition:
    background-color var(--duration-fast) var(--ease-soft),
    color var(--duration-fast) var(--ease-soft),
    border-color var(--duration-fast) var(--ease-soft),
    opacity var(--duration-fast) var(--ease-soft);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-text-primary);
  color: var(--color-text-dark);
  border: 1px solid var(--color-text-primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-text-primary);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-line);
}

.btn-secondary:hover {
  border-color: var(--color-text-secondary);
}


/* ============================================================
   REVEAL ANIMATIONS — Base state
   GSAP handles actual animation, these set initial state
============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
}


/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  overflow: visible;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--duration-slow) var(--ease-soft),
    border-color var(--duration-slow) var(--ease-soft),
    backdrop-filter var(--duration-slow) var(--ease-soft);
}

.navbar.is-scrolled {
  background-color: rgba(5, 5, 5, 0.85);
  border-bottom-color: var(--color-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Removing backdrop-filter while menu is open restores the viewport as the
   containing block for .mobile-menu (position:fixed), fixing the scroll-offset bug. */
.navbar.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: visible;
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}

.navbar-logo:hover,
.navbar-logo:focus-visible {
  transform: scale(1.05);
}

.logo-monogram {
  width: 36px;
  height: 24px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-text-primary);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: visible;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  overflow: visible;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.01em;
  transition: color var(--duration-fast) var(--ease-soft);
}

.nav-link:hover,
.nav-link--active {
  color: var(--color-text-primary);
}

.nav-cta {
  font-size: 13px;
  padding: 10px 22px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  margin-right: -8px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--color-text-primary);
  transition:
    transform var(--duration-normal) var(--ease-out),
    opacity var(--duration-fast) var(--ease-soft);
  transform-origin: center;
}

.hamburger.is-active .hamburger-line:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  max-height: calc(100vh  - var(--navbar-height)); /* fallback */
  max-height: calc(100dvh - var(--navbar-height)); /* Safari dynamic chrome */
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* flex-start prevents top-clipping when content overflows */
  padding: clamp(32px, 7vh, 60px) var(--container-pad);
  padding-bottom: calc(clamp(32px, 7vh, 60px) + env(safe-area-inset-bottom));
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--duration-normal) var(--ease-soft);
  z-index: 999;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 48px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-secondary);
  line-height: 1.1;
  transition: color var(--duration-fast) var(--ease-soft);
  display: block;
  padding: 8px 0;
}

.mobile-nav-link:hover {
  color: var(--color-text-primary);
}

.mobile-cta {
  align-self: flex-start;
  font-size: 14px;
  padding: 14px 32px;
}


/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--navbar-height);
  padding-bottom: clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}

.hero-container {
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 80px);
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.eyebrow-dot {
  opacity: 0.4;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 150px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--color-text-primary);
  margin-bottom: 40px;
  max-width: 13ch;
}

.hero-line {
  display: block;
}

.hero-line-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-secondary);
}

.hero-subline {
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.5;
  max-width: 52ch;
  margin-bottom: 48px;
}

.hero-br {
  display: block;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: var(--container-pad);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-text-secondary));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}


/* ============================================================
   SHOWREEL SECTION
============================================================ */
.showreel-section {
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}

.showreel-wrapper {
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  will-change: padding;
  transition: padding var(--duration-slow) var(--ease-soft);
}

.showreel-media {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--color-surface);
}

.showreel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #101010 0%, #1a1a1a 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.showreel-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,245,242,0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,245,242,0.02) 0%, transparent 50%);
}

.showreel-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.play-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(245,245,242,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--duration-fast) var(--ease-soft);
}

.play-icon svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.showreel-placeholder:hover .play-icon {
  border-color: rgba(245,245,242,0.35);
}

.placeholder-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.showreel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showreel-text {
  padding: clamp(48px, 6vw, 80px) var(--container-pad) 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.showreel-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  max-width: 14ch;
}

.showreel-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--color-text-secondary);
  font-weight: 400;
}


/* ============================================================
   STATEMENT SECTION
============================================================ */
.statement-section {
  padding: clamp(120px, 16vw, 220px) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

.statement-container {
  max-width: 1100px;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-text-tertiary);
  margin-bottom: 48px;
}

.stmt-word {
  display: inline-block;
  color: var(--color-text-tertiary);
  transition: color var(--duration-slow) var(--ease-soft);
  margin-right: 0.22em;
}

.stmt-word.is-lit {
  color: var(--color-text-primary);
}

.stmt-break {
  display: block;
  height: 0;
  width: 100%;
  margin-bottom: 0.08em;
}

.statement-sub {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}


/* ============================================================
   WORK SECTION — Selected Projects
============================================================ */
.work-section {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--color-line);
}

.work-header {
  padding: 0 var(--container-pad) clamp(60px, 8vw, 100px);
  max-width: var(--container-max);
  margin: 0 auto;
}

.work-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--color-text-primary);
  margin-bottom: 28px;
}

.work-intro {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--color-text-secondary);
  max-width: 48ch;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-item {
  border-top: 1px solid var(--color-line);
}

.project-item:last-child {
  border-bottom: 1px solid var(--color-line);
}

.project-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  cursor: default;
  transition: opacity var(--duration-fast) var(--ease-soft);
}

.project-item--right .project-link {
  direction: rtl;
}

.project-item--right .project-info {
  direction: ltr;
}

.project-item--right .project-media {
  direction: ltr;
}

.project-media {
  overflow: hidden;
  border-radius: 3px;
}

.project-image-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-surface);
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  transform-origin: center;
}

.project-link:hover .project-img {
  transform: scale(1.04);
}

.project-info {
  padding: 40px clamp(32px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.project-number {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--color-surface-2);
  display: block;
  margin-bottom: 24px;
  user-select: none;
  transition: color var(--duration-normal) var(--ease-soft);
}

.project-link:hover .project-number {
  color: var(--color-line);
}

.project-meta {
  flex: 1;
}

.project-client {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-category {
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.project-year {
  font-size: 12px;
  color: var(--color-text-tertiary);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.project-arrow {
  font-size: 20px;
  color: var(--color-text-tertiary);
  margin-top: 32px;
  display: block;
  transition:
    color var(--duration-fast) var(--ease-soft),
    transform var(--duration-fast) var(--ease-soft);
}

.project-link:hover .project-arrow {
  color: var(--color-text-primary);
  transform: translateX(6px);
}


/* ============================================================
   SERVICES SECTION — Sticky Scroll
============================================================ */
.services-section {
  border-top: 1px solid var(--color-line);
  padding: clamp(80px, 10vw, 140px) 0;
}

.services-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.services-sticky {
  position: sticky;
  top: calc(var(--navbar-height) + 40px);
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--color-text-primary);
  margin-bottom: 40px;
}

.services-progress {
  width: 1px;
  height: 200px;
  background: var(--color-line);
  position: relative;
  overflow: hidden;
}

.services-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-text-primary);
  height: 0%;
  transition: height 0.1s linear;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  padding: 48px 0;
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  opacity: 0.3;
  transition: opacity var(--duration-normal) var(--ease-soft);
}

.service-item.active,
.service-item:focus-within {
  opacity: 1;
}

.service-item:hover {
  opacity: 0.8;
}

.service-item.active:hover {
  opacity: 1;
}

.service-number {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-tertiary);
  padding-top: 4px;
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.service-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 42ch;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags li {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  border: 1px solid var(--color-line);
  padding: 5px 12px;
  border-radius: 1px;
}


/* ============================================================
   RECRUITING SECTION
============================================================ */
.recruiting-section {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}

.recruiting-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.recruiting-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-text-primary);
  margin-bottom: 28px;
  max-width: 18ch;
}

.recruiting-text {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 44ch;
  margin-bottom: 20px;
}

.recruiting-text--sub {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--color-text-tertiary);
  margin-bottom: 40px;
}

.recruiting-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  border-top: 1px solid var(--color-line);
}

.recruiting-list li {
  font-size: 14px;
  color: var(--color-text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.recruiting-list li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1px;
  background: var(--color-text-tertiary);
  flex-shrink: 0;
}

.recruiting-media {
  position: relative;
}

.recruiting-image-inner {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-bg);
}

.recruiting-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.7s var(--ease-out), filter 0.5s var(--ease-soft);
}

.recruiting-image-inner:hover .recruiting-img {
  transform: scale(1.03);
  filter: grayscale(0%);
}


/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
  padding: clamp(80px, 12vw, 160px) 0;
  border-bottom: 1px solid var(--color-line);
  overflow: hidden;
}

/* ---- About header text block ---- */
.about-header-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  margin-bottom: clamp(56px, 8vw, 100px);
}

.about-content {
  max-width: 60ch;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--color-text-primary);
  margin-bottom: 36px;
}

.about-text {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 24px;
}

.about-text--secondary {
  color: var(--color-text-tertiary);
  font-size: clamp(14px, 1.5vw, 16px);
}

.about-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-top: 40px;
}

.location-dot {
  width: 6px;
  height: 6px;
  background: var(--color-text-tertiary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Team Grid ---- */
.team-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.5vw, 24px);
}

.team-member {
  background: var(--color-surface);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

/* Image area: 4:5 portrait ratio */
.team-image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface);
  position: relative;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
  filter: grayscale(10%);
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}

/* Individual object-position per person */
.team-image--efosa  { object-position: center top; }
.team-image--melissa { object-position: center 15%; }

.team-member:hover .team-image {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* Info block below image */
.team-member-info {
  padding: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid var(--color-line);
}

.team-member-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.team-member-role {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 16px;
}

.team-member-description {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
  max-width: 38ch;
}

/* Dark placeholder shown behind image (visible if file is missing) */
.team-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #0f0f0f 100%);
  z-index: 0;
}


/* ============================================================
   PROCESS SECTION
============================================================ */
.process-section {
  padding: clamp(80px, 12vw, 160px) 0;
  border-bottom: 1px solid var(--color-line);
}

.process-header {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  margin-bottom: clamp(60px, 8vw, 100px);
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--color-text-primary);
}

.process-list {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.process-step {
  border-top: 1px solid var(--color-line);
  position: relative;
}

.process-step:last-child {
  border-bottom: 1px solid var(--color-line);
}

.process-step-inner {
  display: grid;
  grid-template-columns: clamp(80px, 12vw, 180px) 1fr;
  gap: 32px;
  align-items: start;
  padding: clamp(36px, 5vw, 60px) 0;
  position: relative;
  z-index: 1;
}

.process-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--color-surface-2);
  display: block;
  transition: color var(--duration-slow) var(--ease-soft);
  user-select: none;
}

.process-step.is-active .process-number {
  color: var(--color-line);
}

.process-content {
  padding-top: 8px;
}

.process-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 14px;
}

.process-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 44ch;
}

.process-line {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--color-text-secondary);
  transition: width 0.6s var(--ease-out);
}

.process-step.is-active .process-line {
  width: 100%;
}


/* ============================================================
   SOCIAL PROOF SECTION
============================================================ */
.proof-section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--color-line);
}

.proof-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.proof-logos {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.proof-logo-item {
  opacity: 0.25;
  transition: opacity var(--duration-fast) var(--ease-soft);
}

.proof-logo-item:hover {
  opacity: 0.5;
}

.logo-placeholder {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.proof-divider {
  width: 100%;
  height: 1px;
  background: var(--color-line);
  margin-bottom: 64px;
}

.proof-quote {
  max-width: 700px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: 28px;
  font-style: italic;
}

.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-name {
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.quote-project {
  font-size: 11px;
  color: var(--color-text-tertiary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  padding: clamp(120px, 16vw, 220px) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
}

.cta-monogram {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 60%;
  max-width: 700px;
  pointer-events: none;
  user-select: none;
  transition: transform 0.2s var(--ease-soft);
}

.cta-monogram svg {
  width: 100%;
  height: auto;
}

.cta-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--color-text-primary);
  margin-bottom: 32px;
}

.cta-sub {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--color-text-secondary);
  margin-bottom: 52px;
}

.cta-actions {
  margin-bottom: 40px;
}

.cta-btn {
  font-size: 14px;
  padding: 16px 36px;
}

.cta-contact-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-link {
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: color var(--duration-fast) var(--ease-soft);
}

.cta-link:hover {
  color: var(--color-text-primary);
}

.cta-divider {
  color: var(--color-text-tertiary);
  font-size: 12px;
}

.cta-location {
  font-size: 13px;
  color: var(--color-text-tertiary);
  font-weight: 500;
  letter-spacing: 0.06em;
}


/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: clamp(60px, 8vw, 100px) 0 clamp(32px, 4vw, 48px);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

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

.footer-brand {
  flex-shrink: 0;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
}

.footer-logo-word {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-text-primary);
}

.footer-tagline {
  font-size: 12px;
  color: var(--color-text-tertiary);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}

.footer-links nav ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links nav ul li a {
  font-size: 13px;
  color: var(--color-text-secondary);
  transition: color var(--duration-fast) var(--ease-soft);
}

.footer-links nav ul li a:hover {
  color: var(--color-text-primary);
}

.footer-line {
  width: 100%;
  height: 1px;
  background: var(--color-line);
  margin-bottom: 28px;
}

.footer-bottom {
  margin-top: 0;
}

.footer-closing {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  opacity: 0.08;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.footer-copy {
  font-size: 12px;
  color: var(--color-text-tertiary);
  letter-spacing: 0.04em;
}


/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 100px;
    --container-pad: clamp(24px, 4vw, 56px);
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-sticky {
    position: relative;
    top: auto;
  }

  .services-progress {
    display: none;
  }

  .project-link {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-item--right .project-link {
    direction: ltr;
  }

  .project-info {
    padding: 24px 0 0;
  }

  .project-number {
    font-size: clamp(60px, 12vw, 100px);
  }

  .recruiting-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .recruiting-image-inner {
    aspect-ratio: 16 / 9;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */
@media (max-width: 768px) {
  :root {
    --navbar-height: 60px;
    --container-pad: 20px;
  }

  .navbar-nav,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-heading {
    font-size: clamp(54px, 16vw, 80px);
  }

  .hero-br {
    display: none;
  }

  .hero-subline {
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-tags {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .showreel-headline {
    font-size: clamp(28px, 9vw, 44px);
  }

  .statement-text {
    font-size: clamp(32px, 10vw, 52px);
  }

  .services-container {
    padding: 0 var(--container-pad);
  }

  .service-item {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .process-step-inner {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .proof-logos {
    gap: 24px;
  }

  .cta-headline {
    font-size: clamp(48px, 14vw, 72px);
  }

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

  .footer-links {
    gap: 32px;
  }

  .work-title {
    font-size: clamp(40px, 12vw, 64px);
  }

  .project-link {
    padding: clamp(32px, 6vw, 48px) var(--container-pad);
  }

  .btn {
    padding: 12px 22px;
    font-size: 12px;
  }

  .recruiting-list {
    margin-bottom: 36px;
  }

  .quote-text {
    font-size: clamp(20px, 7vw, 28px);
  }

  .cta-contact-links {
    gap: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
  }

  .team-image-wrap {
    aspect-ratio: 3 / 4;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
============================================================ */
@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(44px, 16vw, 64px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn {
    max-width: 260px;
  }

  .cta-btn {
    max-width: none;
  }

  .mobile-cta {
    width: auto;
  }
}


/* ============================================================
   ARTIST VISUAL — Dual portrait video grid
============================================================ */
.artist-video-grid {
  overflow: visible;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.artist-video-item {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 9 / 16;
  background: var(--color-surface);
}

.artist-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.project-link:hover .artist-video {
  transform: scale(1.04);
}

@media (max-width: 480px) {
  .artist-video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


/* ============================================================
   NAVBAR — Real monogram image
============================================================ */
.logo-monogram-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}


/* ============================================================
   HERO — Floating rotating monogram
============================================================ */
.hero-monogram-wrap {
  flex-shrink: 0;
  width: clamp(240px, 30vw, 480px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  opacity: 0;
  animation: hero-monogram-float 7s ease-in-out infinite;
}

.hero-monogram-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  animation: hero-monogram-rotate 24s linear infinite;
}

@keyframes hero-monogram-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

@keyframes hero-monogram-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* ============================================================
   CTA — Real monogram image (very subtle background)
============================================================ */
.cta-monogram-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.05;
}


/* ============================================================
   FOOTER — Real logo image
============================================================ */
.footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo {
  display: block;
  margin-bottom: 12px;
}


/* ============================================================
   SERVICES — Floating platform / software icons
============================================================ */
.services-floating-icons {
  position: relative;
  width: 100%;
  min-height: 200px;
  margin-top: 48px;
  pointer-events: none;
}

.floating-service-icon {
  position: absolute;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.55);
  opacity: 0.35;
  transition:
    filter var(--duration-normal) var(--ease-soft),
    opacity var(--duration-normal) var(--ease-soft);
  pointer-events: auto;
  cursor: default;
}

.floating-service-icon:hover {
  filter: grayscale(20%) brightness(0.9);
  opacity: 0.65;
}

.floating-service-icon--lightroom {
  width: 44px;
  top: 16px;
  left: 0;
  animation: float-icon-1 7.2s ease-in-out infinite;
}

.floating-service-icon--tiktok {
  width: 34px;
  top: 8px;
  left: 72px;
  animation: float-icon-2 9.5s ease-in-out infinite;
}

.floating-service-icon--davinci {
  width: 48px;
  top: 108px;
  left: 24px;
  animation: float-icon-3 8.1s ease-in-out infinite;
}

.floating-service-icon--instagram {
  width: 38px;
  top: 88px;
  left: 104px;
  animation: float-icon-4 6.8s ease-in-out infinite;
}

@keyframes float-icon-1 {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-14px) rotate(1.5deg); }
}

@keyframes float-icon-2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-18px) rotate(-1deg); }
}

@keyframes float-icon-3 {
  0%, 100% { transform: translateY(0) rotate(0.5deg); }
  50%       { transform: translateY(-11px) rotate(2.5deg); }
}

@keyframes float-icon-4 {
  0%, 100% { transform: translateY(-6px) rotate(-1deg); }
  50%       { transform: translateY(8px) rotate(1.5deg); }
}


/* ============================================================
   RESPONSIVE — Hero monogram + floating icons
============================================================ */
@media (max-width: 1024px) {
  .hero-monogram-wrap {
    width: clamp(160px, 22vw, 280px);
  }

  .services-floating-icons {
    min-height: 160px;
    margin-top: 36px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .hero-monogram-wrap {
    width: clamp(100px, 42vw, 180px);
    align-self: flex-end;
    padding-bottom: 0;
  }

  .services-floating-icons {
    min-height: 130px;
    margin-top: 28px;
  }

  .floating-service-icon--lightroom { width: 34px; }
  .floating-service-icon--tiktok    { width: 26px; left: 54px; }
  .floating-service-icon--davinci   { width: 36px; left: 16px; }
  .floating-service-icon--instagram { width: 28px; left: 74px; }
}

@media (max-width: 480px) {
  .hero-monogram-wrap {
    width: clamp(80px, 36vw, 140px);
  }

  .floating-service-icon {
    animation: none;
  }
}


/* ============================================================
   GALLERY SECTION — Selected Frames
============================================================ */
.gallery-section {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  overflow: hidden;
}

.gallery-header {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  margin-bottom: clamp(40px, 5vw, 72px);
}

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

.gallery-desc {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--color-text-secondary);
  max-width: 52ch;
}

/* ---- Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(6px, 0.55vw, 10px);
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Featured grid: three large openers with more breathing room */
.gallery-grid--featured {
  row-gap: clamp(16px, 2vw, 28px);
}

.gallery-grid--more {
  display: none;
  margin-top: clamp(6px, 0.55vw, 10px);
}

.gallery-grid--more.is-visible {
  display: grid;
}

/* ---- Items ---- */
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-surface);
  cursor: pointer;
  position: relative;
}

/* ---- Column spans ---- */
.gallery-item--full { grid-column: 1 / -1; }
.gallery-item--8col { grid-column: span 8; }
.gallery-item--6col { grid-column: span 6; }
.gallery-item--4col { grid-column: span 4; }
.gallery-item--3col { grid-column: span 3; }

/* ---- Aspect ratios (height auto-sizes via ratio × column width) ---- */
.gallery-item--ar-16-9 { aspect-ratio: 16 / 9; }
.gallery-item--ar-4-3  { aspect-ratio: 4 / 3; }
.gallery-item--ar-3-2  { aspect-ratio: 3 / 2; }
.gallery-item--ar-4-5  { aspect-ratio: 4 / 5; }
.gallery-item--ar-2-3  { aspect-ratio: 2 / 3; }
.gallery-item--ar-9-16 { aspect-ratio: 9 / 16; }

/* ---- Image ---- */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.03);
}

/* ---- More button ---- */
.gallery-more-wrap {
  display: flex;
  justify-content: center;
  padding: clamp(36px, 4vw, 56px) var(--container-pad) 0;
}

.gallery-more-button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-line);
  background: transparent;
  padding: 14px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition:
    color var(--duration-fast) var(--ease-soft),
    border-color var(--duration-fast) var(--ease-soft);
}

.gallery-more-button:hover {
  color: var(--color-text-primary);
  border-color: var(--color-text-secondary);
}

.gallery-more-button.is-hidden {
  display: none;
}

/* ---- Lightbox ---- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-soft);
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox-inner {
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 30px;
  color: rgba(245, 245, 242, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color var(--duration-fast) var(--ease-soft);
}

.gallery-lightbox-close:hover {
  color: var(--color-text-primary);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 44px;
  color: rgba(245, 245, 242, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 20px;
  line-height: 1;
  transition: color var(--duration-fast) var(--ease-soft);
}

.gallery-lightbox-prev { left: 8px; }
.gallery-lightbox-next { right: 8px; }

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  color: var(--color-text-primary);
}

/* ---- Responsive: Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  /* 8-col landscape items collapse to full-width */
  .gallery-item--8col { grid-column: 1 / -1; }
}

/* ---- Responsive: Mobile (≤768px) ---- */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }
  /* 6-col items go full-width */
  .gallery-item--6col { grid-column: 1 / -1; }
  /* 4-col and 3-col → half of 4-col grid */
  .gallery-item--4col { grid-column: span 2; }
  .gallery-item--3col { grid-column: span 2; }
}

/* ---- Responsive: Small Mobile (≤480px) ---- */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  /* 4-col and 6-col → full-width */
  .gallery-item--4col,
  .gallery-item--6col { grid-column: 1 / -1; }
  /* 3-col → single column (2 portraits per row) */
  .gallery-item--3col { grid-column: span 1; }
  /* Portrait items: cap height to prevent extreme tallness on small screens */
  .gallery-item--ar-9-16,
  .gallery-item--ar-2-3,
  .gallery-item--ar-4-5 { max-height: 70vw; }

  /* Last 5 items in gallery-more: first 4 as 2×2 grid, last as full-width closer */
  .gallery-grid--more .gallery-item:nth-child(12),
  .gallery-grid--more .gallery-item:nth-child(13),
  .gallery-grid--more .gallery-item:nth-child(14),
  .gallery-grid--more .gallery-item:nth-child(15) {
    grid-column: span 1;
  }
  .gallery-grid--more .gallery-item:nth-child(16) {
    grid-column: 1 / -1;
    max-width: 65%;
    max-height: none;
    justify-self: center;
    margin-top: 8px;
  }
}


/* ============================================================
   REDUCED MOTION — Disable all new animations
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-monogram-wrap,
  .hero-monogram-img,
  .floating-service-icon {
    animation: none;
  }

  .hero-monogram-wrap {
    opacity: 1;
  }

  /* Gallery items: always fully visible, no transform, no transition */
  .gallery-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .gallery-image {
    transition: none;
  }

  .gallery-lightbox {
    transition: none;
  }

  .team-image {
    transition: none;
  }

  .contact-phone {
    animation: none;
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  }

  .project-laptop {
    animation: none !important;
  }
}


/* ============================================================
   CAMERA CURSOR
============================================================ */
.camera-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 9900;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  will-change: transform;
}

.camera-cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.camera-cursor.is-hover {
  transform: translate(-50%, -50%) scale(1.18);
}

.camera-cursor-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.7));
}

/* Hide native cursor only over media areas */
.media-cursor-area {
  cursor: none;
}

/* Touch devices: restore normal cursor */
@media (hover: none), (pointer: coarse) {
  .media-cursor-area {
    cursor: auto;
  }

  .camera-cursor {
    display: none !important;
  }
}


/* ============================================================
   MACBOOK MOCKUP — Project 04
============================================================ */
.project-laptop-scene {
  position: relative;
  width: 100%;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 40px) clamp(20px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(160deg, #0e0e0e 0%, #070707 100%);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 3px;
}

.project-laptop {
  position: relative;
  width: clamp(260px, 72%, 560px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: perspective(900px) rotateX(4deg) rotateY(-4deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
  z-index: 1;
}

/* ---- Lid ---- */
.project-laptop-lid {
  width: 100%;
  position: relative;
  background: linear-gradient(170deg, #2c2c2c 0%, #1a1a1a 50%, #222 100%);
  border-radius: 10px 10px 2px 2px;
  padding: 5% 3% 3%;
  box-shadow:
    0 -1px 0 rgba(255,255,255,0.07) inset,
    0 2px 8px rgba(0,0,0,0.6);
}

/* Subtle bezel edge */
.project-laptop-lid::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

/* Webcam dot */
.project-laptop-webcam {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #1c1c1c;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 2;
}

/* Screen bezel */
.project-laptop-screen {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #050505;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
}

/* Screen recording video */
.project-laptop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}

/* Placeholder — visible behind video; auto-hidden when video plays */
.project-laptop-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
}

.project-laptop-placeholder-label {
  font-family: var(--font-display);
  font-size: clamp(10px, 1.8vw, 18px);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(245,245,242,0.15);
}

.project-laptop-placeholder-sub {
  font-size: clamp(7px, 1vw, 10px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,242,0.07);
}

/* Screen glare overlay — above video */
.project-laptop-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0%,
    transparent 50%
  );
  pointer-events: none;
  border-radius: inherit;
  z-index: 3;
}

/* ---- Hinge ---- */
.project-laptop-hinge {
  width: 92%;
  height: 4px;
  background: linear-gradient(to bottom, #1a1a1a, #111);
  border-radius: 0 0 2px 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

/* ---- Base ---- */
.project-laptop-base {
  width: 100%;
  background: linear-gradient(to bottom, #232323 0%, #1c1c1c 50%, #191919 100%);
  border-radius: 0 0 8px 8px;
  padding: 4% 6% 6%;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 4px 16px rgba(0,0,0,0.7);
  position: relative;
}

.project-laptop-base::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

/* Keyboard area */
.project-laptop-keyboard {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 8px;
}

.laptop-key-row {
  height: 4px;
  border-radius: 2px;
  background: rgba(0,0,0,0.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.laptop-key-row--fn {
  height: 3px;
  background: rgba(0,0,0,0.35);
  margin-bottom: 2px;
}

/* Trackpad */
.project-laptop-trackpad {
  width: 34%;
  height: clamp(10px, 2.5vw, 22px);
  background: rgba(0,0,0,0.4);
  border-radius: 4px;
  margin: 0 auto;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(0,0,0,0.3);
}

/* ---- Shadow ---- */
.project-laptop-shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, transparent 80%);
  filter: blur(8px);
  pointer-events: none;
}

/* Hover lift */
.project-link:hover .project-laptop {
  transform: perspective(900px) rotateX(3deg) rotateY(-3deg) translateY(-4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .project-laptop {
    width: clamp(240px, 80%, 480px);
  }
}

@media (max-width: 768px) {
  .project-laptop-scene {
    aspect-ratio: 4 / 3;
    padding: 16px 12px 12px;
  }

  .project-laptop {
    width: 85%;
    transform: perspective(600px) rotateX(2deg) rotateY(-2deg);
  }

  .project-link:hover .project-laptop {
    transform: perspective(600px) rotateX(1deg) rotateY(-1deg) translateY(-2px);
  }
}


/* ============================================================
   SHOWREEL CTA — overlay button on showreel video
============================================================ */
.showreel-cta-wrap {
  position: absolute;
  bottom: clamp(20px, 3.5vw, 44px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  white-space: nowrap;
}

.showreel-cta-pre {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.5);
  pointer-events: none;
}

.showreel-cta {
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
  background: rgba(8, 8, 8, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 245, 242, 0.22);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 2px;
  min-height: 44px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.22s var(--ease-soft),
    color 0.22s var(--ease-soft),
    border-color 0.22s var(--ease-soft),
    transform 0.22s var(--ease-out);
}

.showreel-cta:hover,
.showreel-cta:focus-visible {
  background: rgba(245, 245, 242, 0.95);
  color: var(--color-text-dark);
  border-color: transparent;
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .showreel-cta-wrap {
    bottom: clamp(16px, 4vw, 28px);
  }

  .showreel-cta-pre {
    display: none;
  }

  .showreel-cta {
    font-size: 12px;
    padding: 12px 24px;
  }
}


/* ============================================================
   SERVICES — Intro text + service links
============================================================ */
.services-intro {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 36ch;
  margin-bottom: 8px;
}

.services-intro--sub {
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--color-text-tertiary);
  margin-bottom: 28px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-tertiary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 2px;
  transition:
    color var(--duration-fast) var(--ease-soft),
    border-color var(--duration-fast) var(--ease-soft);
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--color-text-primary);
  border-color: var(--color-text-secondary);
}


/* ============================================================
   RECRUITING TEASER — compact section (replaces full section)
============================================================ */
.recruiting-teaser-section {
  border-top: 1px solid var(--color-line);
  padding: clamp(64px, 9vw, 120px) 0;
}

.recruiting-teaser-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.recruiting-teaser-content {
  max-width: 680px;
}

.recruiting-teaser-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  max-width: 18ch;
}

.recruiting-teaser-text {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 36px;
}

.recruiting-teaser-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .recruiting-teaser-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .recruiting-teaser-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


/* ============================================================
   DESKTOP DROPDOWN NAVIGATION
============================================================ */
.nav-dropdown {
  position: relative;
  overflow: visible;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  color: var(--color-text-secondary);
}

.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--color-text-primary);
}

.nav-dropdown-trigger.is-active {
  color: var(--color-text-primary);
}

.nav-dropdown-chevron {
  width: 10px;
  height: 6px;
  transition: transform 0.2s var(--ease-soft);
  flex-shrink: 0;
}

.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 222px;
  background: rgba(14, 14, 14, 0.97);
  border: 1px solid var(--color-line);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s var(--ease-soft),
    transform 0.18s var(--ease-soft);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1100;
}

/* Bridge to prevent hover gap between trigger and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text-secondary);
  transition: color 0.15s var(--ease-soft), background 0.15s var(--ease-soft);
  white-space: nowrap;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.nav-dropdown-item.is-current {
  color: var(--color-text-primary);
}

.nav-dropdown-item.is-current::before {
  content: '–';
  margin-right: 8px;
  opacity: 0.4;
  font-weight: 300;
}


/* ============================================================
   MOBILE ACCORDION (Leistungen sub-menu)
============================================================ */
.mobile-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-secondary);
  line-height: 1.1;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-soft);
}

.mobile-acc-trigger:hover,
.mobile-acc-trigger[aria-expanded="true"] {
  color: var(--color-text-primary);
}

.mobile-acc-chevron {
  font-size: 0.45em;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s var(--ease-soft);
  flex-shrink: 0;
  opacity: 0.6;
}

.mobile-acc-trigger[aria-expanded="true"] .mobile-acc-chevron {
  transform: rotate(180deg);
}

.mobile-acc-sub {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s var(--ease-soft);
  padding-left: clamp(20px, 4vw, 32px);
}

.mobile-acc-sub.is-open {
  max-height: 500px;
}

.mobile-acc-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 5.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text-secondary);
  line-height: 1.2;
  padding: 7px 0;
  transition: color var(--duration-fast) var(--ease-soft);
}

.mobile-acc-link:hover,
.mobile-acc-link.is-current {
  color: var(--color-text-primary);
}

.mobile-nav-item {
  /* wrapper li for accordion */
}
