/* =============================================
   DOR ZALALIHIN — SAM KOLDER STYLE
   ============================================= */

:root {
  --black: #0a0a0a;
  --white: #f5f2ed;
  --gray: #888;
  --gray-light: #bbb;
  --accent: #c8a96e;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* =============================================
   CURSOR
   ============================================= */

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--ease);
  mix-blend-mode: difference;
}

.cursor.cursor--active {
  width: 80px;
  height: 80px;
  background: transparent;
  border: 1px solid var(--white);
}

.cursor.cursor--text {
  width: 80px;
  height: 80px;
  background: var(--white);
}

/* =============================================
   NAV
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  mix-blend-mode: difference;
  transition: padding 0.4s var(--ease);
}

.nav.nav--scrolled {
  padding: 18px 48px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: opacity 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s var(--ease);
}

.nav-link:hover::after { width: 100%; }

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: none;
  padding: 4px;
  position: relative;
}

/* The bars are only 32x16 — stretch the touch target to 44x44 without
   moving anything in the layout. */
.nav-menu::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}

.nav-menu span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.nav-menu.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-menu.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

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

.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-link:hover { color: var(--accent); }

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s var(--ease), transform 8s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero-eyebrow.visible { opacity: 1; transform: translateY(0); }

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line > * {
  display: block;
}

.hero-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3.5rem, 9vw, 10rem);
  color: var(--accent);
  line-height: 1.1;
}

.hero-desc {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.6);
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero-desc.visible { opacity: 1; transform: translateY(0); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.5);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(245,242,237,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-slide-counter {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(245,242,237,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.current-slide {
  color: var(--white);
  font-size: 1rem;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* =============================================
   MARQUEE
   ============================================= */

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  background: rgba(255,255,255,0.02);
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.4);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   INTRO
   ============================================= */

.intro-section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.intro-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.intro-text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  max-width: 700px;
}

.intro-stats {
  display: flex;
  gap: 80px;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

/* =============================================
   WORK SECTION
   ============================================= */

.work-section {
  padding: 0 0 120px;
}

.section-header {
  padding: 40px 48px 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* Featured Image */
.featured-image {
  position: relative;
  height: 85vh;
  overflow: hidden;
  margin-bottom: 4px;
}

.featured-image img {
  transition: transform 8s linear;
}

.featured-image:hover img {
  transform: scale(1.03);
}

.featured-caption {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.caption-category {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.caption-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* Work Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0;
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  aspect-ratio: 3/4;
}

.work-item--tall {
  aspect-ratio: 3/5;
  grid-row: span 2;
}

.work-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.work-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.work-img-wrap img {
  transition: transform 0.8s var(--ease);
}

.work-item:hover .work-img-wrap img {
  transform: scale(1.06);
}

.work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 24px 24px;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 100%);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.work-item:hover .work-info {
  transform: translateY(0);
  opacity: 1;
}

.work-category {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.work-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* =============================================
   CINEMATIC SECTION
   ============================================= */

.cinematic-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinematic-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
}

.cinematic-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cinematic-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  max-width: 800px;
}

.cinematic-author {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =============================================
   ABOUT
   ============================================= */

.about-section {
  padding: 160px 48px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}

.about-image img {
  transition: transform 8s linear;
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}

.about-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}

.about-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,242,237,0.65);
  max-width: 440px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  width: fit-content;
  transition: gap 0.3s var(--ease), border-color 0.3s;
}

.about-cta:hover {
  gap: 20px;
  border-color: var(--white);
}

.about-cta svg {
  width: 20px;
  height: 20px;
}

/* =============================================
   SERVICES
   ============================================= */

.services-section {
  padding: 40px 48px 120px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.services-header {
  margin-bottom: 60px;
}

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

.service-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: padding 0.3s var(--ease);
  cursor: none;
}

.service-item:hover { padding-left: 24px; }

.service-num {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  min-width: 28px;
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.3s;
}

.service-item:hover .service-name { color: var(--accent); }

.service-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-item:hover .service-line { transform: scaleX(1); }

/* =============================================
   STORE (LUTS)
   ============================================= */

.store-section {
  padding: 120px 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1400px;
  margin: 0 auto;
}

.store-header {
  margin-bottom: 60px;
}

.store-desc {
  font-size: 0.95rem;
  color: rgba(245,242,237,0.65);
  margin-top: 24px;
  max-width: 500px;
}

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

.store-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.store-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.img-comp-container {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: ew-resize; /* Let the user know they can drag horizontally */
  touch-action: pan-y; /* Vertical scroll stays natural, horizontal drags the slider */
  user-select: none;
  -webkit-user-select: none;
  --comp-pos: 50%; /* Slider position, driven by JS */
}

/* Both layers occupy the full frame — the top one is revealed by clipping,
   never by resizing, so the two exposures stay pixel-locked to each other. */
.img-comp-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-comp-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none; /* Stop native image drag from cancelling the gesture */
  user-drag: none;
  /* Inherited from the container, so both layers crop to the exact same window */
  object-position: var(--comp-focus, 50% 50%);
  transition: transform 0.6s var(--ease);
}

.store-card:hover .img-comp-img img {
  transform: scale(1.05);
}

.img-comp-overlay {
  z-index: 10;
  clip-path: inset(0 calc(100% - var(--comp-pos)) 0 0);
}

/* The divider line, riding along with the clip edge */
.img-comp-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comp-pos);
  width: 2px;
  margin-left: -1px;
  background: var(--white);
  box-shadow: 0 0 12px rgba(0,0,0,0.45);
  z-index: 15;
  pointer-events: none;
}

/* The slider button */
.img-comp-slider {
  position: absolute;
  z-index: 20;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 2px solid var(--white);
  border-radius: 50%;
  top: 50%;
  left: var(--comp-pos);
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Let the container handle mouse events */
}

/* Before / After captions */
.img-comp-label {
  position: absolute;
  bottom: 16px;
  z-index: 16;
  padding: 5px 12px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
  border-radius: 2px;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.img-comp-label--before { left: 16px; }
.img-comp-label--after { right: 16px; }

/* Fade a label out once the slider swallows its side */
.img-comp-container[data-pos-low="true"] .img-comp-label--before,
.img-comp-container[data-pos-high="true"] .img-comp-label--after {
  opacity: 0;
}

.img-comp-slider::before,
.img-comp-slider::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.img-comp-slider::before {
  left: 6px;
  border-right: 6px solid var(--white);
}
.img-comp-slider::after {
  right: 6px;
  border-left: 6px solid var(--white);
}

.lut-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 6px 12px;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
}

.lut-badge.free {
  background: var(--accent);
  color: var(--black);
  border: none;
}

.store-info {
  padding: 32px;
}

.store-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.store-info p {
  font-size: 0.85rem;
  color: rgba(245,242,237,0.6);
  margin-bottom: 32px;
  line-height: 1.6;
}

.store-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--white);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: background 0.3s, color 0.3s;
}

.store-btn:hover {
  background: var(--accent);
}

.store-btn.disabled {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}

/* =============================================
   CONTACT
   ============================================= */

.contact-section {
  padding: 120px 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 120px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
}

.contact-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}

.contact-email {
  font-size: 0.9rem;
  color: rgba(245,242,237,0.5);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.contact-email:hover { color: var(--white); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-field {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.3s;
}

.form-field:focus-within {
  border-color: var(--white);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 24px 0;
  resize: none;
}

.form-field select {
  -webkit-appearance: none;
  cursor: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245,242,237,0.3);
}

.form-field select option {
  background: var(--black);
  color: var(--white);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 20px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: none;
  margin-top: 40px;
  transition: background 0.3s, color 0.3s, gap 0.3s var(--ease);
  width: fit-content;
}

.form-submit:hover {
  background: var(--accent);
  gap: 24px;
}

.form-submit svg {
  width: 18px;
  height: 18px;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* Spam trap — hidden from people and screen readers, reachable by bots */
.form-botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin-top: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  min-height: 1.3em; /* Reserve the row so the form doesn't jump */
}

.form-status--success { color: #7fc79a; }
.form-status--error { color: #e8846b; }

/* =============================================
   FOOTER
   ============================================= */

.footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: border-color 0.3s, background 0.3s;
}

.social-link:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.social-link svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(245,242,237,0.3);
}

/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: transparent;
  border: none;
  cursor: none;
  padding: 8px;
  color: var(--white);
  transition: transform 0.3s var(--ease);
}

.lightbox-close:hover { transform: rotate(90deg); }

.lightbox-close svg {
  width: 28px;
  height: 28px;
}

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

.lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .nav {
    padding: 24px 24px;
    mix-blend-mode: normal;
    background: rgba(10,10,10,0.5);
    backdrop-filter: blur(20px);
  }

  .nav-links { display: none; }
  .nav-menu { display: flex; }

  .hero-content { padding: 0 24px; }
  .hero-scroll { left: 24px; }
  .hero-slide-counter { right: 24px; }

  .intro-section { padding: 80px 24px; }
  .intro-stats { gap: 40px; }

  .section-header { padding: 40px 24px 40px; }

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

  .work-item--tall { grid-row: span 1; aspect-ratio: 3/4; }
  .work-item--wide { grid-column: span 2; aspect-ratio: 16/9; }

  .about-section { padding: 80px 24px; }
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-section { padding: 40px 24px 80px; }

  .store-section { padding: 80px 24px; }
  .store-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-section { padding: 80px 24px; }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-left { position: static; }

  .footer { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }

  .work-grid { grid-template-columns: 1fr; }
  .work-item--wide { grid-column: span 1; aspect-ratio: 3/4; }

  .featured-image { height: 60vh; }
  .featured-caption { left: 24px; }

  .intro-stats { flex-direction: column; gap: 24px; }

  .cinematic-bg { background-attachment: scroll; }

  /* iOS Safari zooms the whole page when a focused field is under 16px */
  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 16px;
  }
}
