/* ============================================================
   LOVE SPACE v2 — Editorial Fullscreen Style
   ============================================================ */

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

:root {
  --black:    #0d0d0d;
  --off-white:#f2f0eb;
  --warm-grey:#9a9490;
  --border:   rgba(255,255,255,0.12);
  --border-d: rgba(0,0,0,0.1);
  --red:      #c0291c;
  --red-dark: #8b1a1a;
  --nav-h:    68px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--black);
  font-family: 'Jost', Helvetica, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* Custom cursor */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--off-white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), opacity 0.2s;
  mix-blend-mode: difference;
}
.cursor.grow {
  transform: translate(-50%, -50%) scale(5);
}

/* ============================================================
   PLACEHOLDER IMAGES
   ============================================================ */
.placeholder-img {
  width: 100%; height: 100%;
  background: #c8c4bc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a09c96;
}
.dark-placeholder {
  background: #2a1a1a;
  color: #4a3030;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 500;
  transition: background 0.5s ease;
}
#nav.solid {
  background: var(--black);
}

#nav.solid.light-nav {
  background: rgba(242,240,235,0.96);
  border-bottom: 1px solid var(--border-d);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo {
  display: block;
  height: 34px;
  width: 154px;
  position: relative;
}
.nav-logo img {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0; left: 0;
  transition: opacity 0.4s ease;
}
.nav-logo .logo-dark { opacity: 0; }
.nav-logo .logo-white { opacity: 1; }

#nav.light-nav .logo-dark { opacity: 1; }
#nav.light-nav .logo-white { opacity: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
}
.nav-links a:hover { color: #fff; }

#nav.light-nav .nav-links a { color: rgba(0,0,0,0.55); }
#nav.light-nav .nav-links a:hover { color: var(--black); }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute;
  top: calc(100% + 20px);
  left: -20px;
  background: var(--black);
  padding: 16px 0;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.has-drop:hover .drop {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.drop li a {
  display: block;
  padding: 10px 24px;
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.drop li a:hover { color: #fff; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 1px;
  background: rgba(255,255,255,0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   HERO — FULLSCREEN SLIDESHOW
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.slides { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 1s ease;
  overflow: hidden;
}
.slide.active { opacity: 1; z-index: 2; }
.slide.prev { opacity: 0; z-index: 1; }

.slide-img {
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  transition: transform 8s var(--ease);
}
.slide.active .slide-img { transform: scale(1); }

.slide-caption {
  position: relative;
  z-index: 3;
  padding: 0 64px 72px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-num {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

.slide-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  transition: opacity 0.2s;
}
.slide-title:hover { opacity: 0.75; }

.slide-cat {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Gradient overlay on slide */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 2;
}

/* Controls */
.slide-controls {
  position: absolute;
  bottom: 64px;
  right: 64px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ctrl-btn {
  width: 36px; height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: border-color 0.3s, color 0.3s;
}
.ctrl-btn svg { width: 16px; height: 16px; }
.ctrl-btn:hover { border-color: #fff; color: #fff; }

.slide-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 24px; height: 1px;
  background: rgba(255,255,255,0.3);
  cursor: none;
  transition: background 0.3s, width 0.3s;
}
.dot.active { background: #fff; width: 40px; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 0;
  left: 64px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 32px;
}
.scroll-hint span {
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: 120px 48px 120px;
  max-width: 1100px;
}
.intro-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 32px;
}
.intro-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--black);
  max-width: 780px;
  margin-bottom: 40px;
}
.text-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.text-link:hover { color: var(--black); }

/* ============================================================
   WORKS STACK — fullscreen editorial
   ============================================================ */
.works-stack { position: relative; }

.work-block {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.work-block.alt { direction: rtl; }
.work-block.alt > * { direction: ltr; }
.work-block.dark { background: var(--black); }

.work-visual {
  height: 100%;
  overflow: hidden;
}
.work-visual .placeholder-img,
.work-visual {
  transition: transform 0.8s var(--ease);
}
.work-block:hover .work-visual { transform: scale(1.03); }

.work-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  background: var(--off-white);
}
.work-block.dark .work-overlay {
  background: var(--black);
}

.work-index {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--warm-grey);
  margin-bottom: 20px;
}
.work-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--black);
}
.work-block.dark .work-info h3 { color: rgba(255,255,255,0.9); }
.work-info h3 a { transition: opacity 0.2s; }
.work-info h3 a:hover { opacity: 0.6; }
.work-info p {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.work-block.dark .work-info p { color: rgba(255,255,255,0.35); }

.works-cta {
  padding: 80px 48px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border-d);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid var(--black);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  transition: background 0.3s, color 0.3s;
}
.btn-ghost:hover { background: var(--black); color: var(--off-white); }

/* ============================================================
   PRESS QUOTE
   ============================================================ */
.press {
  padding: 120px 48px;
  background: var(--black);
}
.press-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-top {
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}
.footer-logo-link {
  display: inline-block;
  width: fit-content;
}
.footer-logo {
  height: 80px;
  width: auto;
  opacity: 0.85;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.col-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding: 24px 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ============================================================
   PAGE — O MNIE
   ============================================================ */
.omnie-hero {
  height: 70vh;
  position: relative;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
}
.omnie-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-size: cover;
  background-position: center;
}
.omnie-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 72px;
}
.omnie-hero-content p {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.omnie-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
}
.omnie-hero-content h1 em { font-style: italic; }
.omnie-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}

.omnie-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.omnie-text {
  padding: 100px 80px 100px 64px;
  border-right: 1px solid var(--border-d);
}
.omnie-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3734;
  margin-bottom: 24px;
}
.omnie-kicker {
  font-size: 11px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey) !important;
  margin-bottom: 32px !important;
}
.omnie-photo {
  overflow: hidden;
}
.omnie-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 100px 64px 100px 48px;
  align-items: start;
}
.omnie-gallery figure {
  margin: 0;
}
.omnie-gallery figure:nth-child(2) {
  margin-top: 84px;
}
.omnie-gallery img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
}
.omnie-gallery figcaption {
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.omnie-gallery-single {
  grid-template-columns: minmax(280px, 460px);
  justify-content: center;
  align-content: center;
}
.omnie-gallery-single figure:nth-child(2) {
  margin-top: 0;
}
.omnie-gallery-single img {
  aspect-ratio: 0.82 / 1;
  object-position: center;
}
.omnie-photo .placeholder-img { height: 100%; min-height: 500px; }

.omnie-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-d);
}
.omnie-stat {
  padding: 64px 48px;
  border-right: 1px solid var(--border-d);
}
.omnie-stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-l {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ============================================================
   PAGE — PROJEKTY HUB
   ============================================================ */
.hub-hero {
  padding: calc(var(--nav-h) + 100px) 64px 80px;
  border-bottom: 1px solid var(--border-d);
}
.hub-hero p {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--warm-grey);
  margin-bottom: 24px;
}
.hub-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  line-height: 1.05;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.hub-item {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: block;
  border-right: 1px solid var(--border-d);
}
.hub-item:last-child { border-right: none; }
.hub-item .placeholder-img {
  height: 100%;
  transition: transform 0.8s var(--ease);
}
.hub-item:hover .placeholder-img { transform: scale(1.04); }
.hub-item-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 36px 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  z-index: 2;
}
.hub-item-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}
.hub-item-info span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   PAGE — PROJEKTY LIST (mieszkania / biura)
   ============================================================ */
.cat-hero {
  height: 60vh;
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
}
.cat-hero-bg { position: absolute; inset: 0; opacity: 0.45; }
.cat-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  z-index: 1;
}
.cat-hero-content {
  position: relative; z-index: 2;
  padding: 0 64px 64px;
}
.cat-hero-content span {
  display: block;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.cat-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cat-item {
  position: relative;
  height: 70vh;
  overflow: hidden;
  border-bottom: 1px solid var(--border-d);
  border-right: 1px solid var(--border-d);
}
.cat-item:nth-child(even) { border-right: none; }
.cat-item .placeholder-img {
  height: 100%;
  transition: transform 0.8s var(--ease);
}
.cat-item:hover .placeholder-img { transform: scale(1.04); }
.cat-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 40px 36px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  z-index: 2;
}
.cat-item-label h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}
.cat-item-label span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   PAGE — INTYMNE (dark red)
   ============================================================ */
body.page-intimate {
  background: #0e0808;
  color: #e0d0d0;
}
body.page-intimate #nav { background: rgba(14,8,8,0.95); }
body.page-intimate .footer-col a:hover { color: #e0d0d0; }

.intimate-hero {
  height: 100vh;
  background: #0e0808;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
}
.intimate-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a0808 0%, #0e0808 60%);
}
/* Red sygnet as decoration */
.intimate-hero-sygnet {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  opacity: 0.18;
  z-index: 1;
}
.intimate-hero-sygnet img { width: 100%; height: 100%; object-fit: contain; }

.intimate-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,8,8,0.9) 0%, transparent 50%);
  z-index: 2;
}
.intimate-hero-content {
  position: relative; z-index: 3;
  padding: 0 64px 80px;
}
.intimate-hero-content span {
  display: block;
  font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(192,41,28,0.7);
  margin-bottom: 20px;
}
.intimate-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6.5vw, 100px);
  font-weight: 300;
  color: #f0e0e0;
  line-height: 1.05;
  margin-bottom: 24px;
}
.intimate-hero-content h1 em { font-style: italic; color: var(--red); }
.intimate-hero-content p {
  max-width: 460px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(224,208,208,0.55);
}

.intimate-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.intimate-item {
  position: relative;
  height: 75vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(192,41,28,0.12);
  border-right: 1px solid rgba(192,41,28,0.12);
}
.intimate-item:nth-child(even) { border-right: none; }
.intimate-item .placeholder-img {
  height: 100%;
  background: #1e0e0e;
  color: #4a2828;
  transition: transform 0.8s var(--ease);
}
.intimate-item:hover .placeholder-img { transform: scale(1.04); }
.intimate-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 40px 36px;
  background: linear-gradient(transparent, rgba(14,8,8,0.85));
  z-index: 2;
}
.intimate-item-label h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 300;
  color: #f0e0e0;
  margin-bottom: 8px;
}
.intimate-item-label span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(192,41,28,0.6);
}

.intimate-quote {
  padding: 120px 48px;
  border-top: 1px solid rgba(192,41,28,0.12);
  border-bottom: 1px solid rgba(192,41,28,0.12);
}
.intimate-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: rgba(240,224,224,0.8);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.intimate-quote blockquote em { color: var(--red); font-style: normal; }

.btn-red {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid var(--red);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  transition: background 0.3s, color 0.3s;
  margin-top: 40px;
}
.btn-red:hover { background: var(--red); color: #f0e0e0; }

/* ============================================================
   PAGE — KONTAKT
   ============================================================ */
.contact-hero {
  height: 50vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  position: relative;
}
.contact-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 70%);
}
.contact-hero-content {
  position: relative; z-index: 2;
  padding: 0 64px 64px;
}
.contact-hero-content p {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.contact-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}
.contact-hero-content h1 em { font-style: italic; }

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-d);
}
.contact-left {
  padding: 80px 64px;
  border-right: 1px solid var(--border-d);
}
.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 24px;
}
.contact-left p {
  font-size: 14px;
  line-height: 1.9;
  color: #5a5650;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-detail a {
  font-size: 14px;
  color: #5a5650;
  transition: color 0.3s;
}
.contact-detail a:hover { color: var(--black); }

.contact-form-wrap { padding: 80px 64px; }
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 40px;
}

.form-row { margin-bottom: 32px; }
.form-row label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 12px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-d);
  padding: 8px 0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  cursor: none;
}
.form-row input:focus,
.form-row textarea:focus { border-bottom-color: var(--black); }
.form-row textarea { height: 100px; resize: none; }

/* ============================================================
   FADE IN
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px 32px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
  }
  .drop { position: static; opacity: 1; pointer-events: all; transform: none; background: transparent; display: none; padding: 0; }
  .has-drop.open .drop { display: block; }
  .drop li a { padding: 10px 16px; color: rgba(255,255,255,0.5); }

  .nav-inner { padding: 0 24px; }
  .slide-caption { padding: 0 32px 80px; }
  .scroll-hint { left: 32px; }
  .slide-controls { right: 32px; bottom: 80px; }

  .intro, .works-cta, .press { padding-left: 24px; padding-right: 24px; }
  .work-block { grid-template-columns: 1fr; height: auto; }
  .work-visual { height: 55vw; min-height: 280px; }
  .work-block.alt { direction: ltr; }
  .work-overlay { padding: 40px 24px; }

  .hub-grid { grid-template-columns: 1fr; }
  .hub-item { height: 60vw; border-right: none; border-bottom: 1px solid var(--border-d); }

  .omnie-body { grid-template-columns: 1fr; }
  .omnie-text { padding: 60px 24px; border-right: none; border-bottom: 1px solid var(--border-d); }
  .omnie-stats { grid-template-columns: 1fr; }

  .omnie-gallery { grid-template-columns: 1fr; padding: 48px 24px 72px; }
  .omnie-gallery figure:nth-child(2) { margin-top: 0; }
  .nav-logo { height: 30px; width: 136px; }
  .omnie-stat { border-right: none; border-bottom: 1px solid var(--border-d); }

  .cat-grid { grid-template-columns: 1fr; }
  .cat-item { height: 60vw; border-right: none; }
  .cat-item:nth-child(even) { border-right: none; }

  .intimate-grid { grid-template-columns: 1fr; }
  .intimate-item { border-right: none; height: 60vw; }
  .intimate-hero-sygnet { width: 180px; height: 180px; opacity: 0.1; }
  .intimate-hero-content { padding: 0 24px 64px; }

  .contact-body { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 24px; border-right: none; border-bottom: 1px solid var(--border-d); }
  .contact-form-wrap { padding: 60px 24px; }
  .contact-hero-content { padding: 0 24px 48px; }

  .hub-hero { padding-left: 24px; padding-right: 24px; }
  .cat-hero-content, .omnie-hero-content { padding: 0 24px 48px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 40px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 4px; padding: 20px 24px; }
}

/* ============================================================
   PAGE — SINGLE PROJECT
   ============================================================ */
.project-hero {
  min-height: 92vh;
  background: var(--black);
  color: #fff;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  padding-top: var(--nav-h);
}
.project-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 64px 72px;
}
.project-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 20px;
}
.project-hero-text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(46px, 6vw, 90px);
  line-height: 1.02;
  font-weight: 300;
  margin-bottom: 28px;
}
.project-lead {
  max-width: 560px;
  color: rgba(255,255,255,0.66);
  font-size: 17px;
  line-height: 1.8;
}
.project-hero-image {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}
.project-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-bottom: 1px solid var(--border-d);
  background: var(--off-white);
}
.project-meta div {
  padding: 32px 40px;
  border-right: 1px solid var(--border-d);
}
.project-meta div:last-child { border-right: none; }
.project-meta span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 8px;
}
.project-meta p {
  font-size: 15px;
  color: var(--black);
}
.project-intro {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 72px;
  padding: 96px 64px 84px;
  border-bottom: 1px solid var(--border-d);
}
.project-intro h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 300;
}
.project-intro p {
  max-width: 760px;
  color: rgba(0,0,0,0.66);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 22px;
}
.project-gallery {
  padding: 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.project-photo {
  background: #ddd7cf;
  overflow: hidden;
}
.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.project-photo:hover img { transform: scale(1.035); }
.project-photo.tall { grid-column: span 4; aspect-ratio: 3 / 4; }
.project-photo.wide { grid-column: span 8; aspect-ratio: 16 / 10; }
.project-photo.medium { grid-column: span 6; aspect-ratio: 4 / 5; }
.project-back {
  padding: 0 64px 96px;
}
.project-back a {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 6px;
}
.project-back a:hover { color: var(--black); border-bottom-color: var(--black); }
.cat-item-link { display: block; }
.cat-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.cat-item:hover .cat-photo { transform: scale(1.04); }
.cat-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 960px) {
  .project-hero { grid-template-columns: 1fr; min-height: auto; }
  .project-hero-text { padding: 120px 24px 48px; }
  .project-hero-image { min-height: 68vh; }
  .project-meta { grid-template-columns: 1fr; }
  .project-meta div { border-right: none; border-bottom: 1px solid var(--border-d); padding: 24px; }
  .project-intro { grid-template-columns: 1fr; gap: 28px; padding: 64px 24px 56px; }
  .project-gallery { padding: 32px 24px 56px; grid-template-columns: 1fr; gap: 18px; }
  .project-photo.tall,
  .project-photo.wide,
  .project-photo.medium { grid-column: auto; aspect-ratio: auto; }
  .project-photo img { height: auto; }
  .project-back { padding: 0 24px 72px; }
}
.slide-img img,
.work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.omnie-hero-solid::after { display: none; }


/* Homepage layout refinement */
.scroll-hint { display: none !important; }
.slide-caption {
  max-width: min(980px, calc(100% - 140px));
  gap: 14px;
  padding-bottom: 96px;
}
.slide-title {
  line-height: 1.08;
}
.slide-cat {
  margin-top: 4px;
  display: block;
}
@media (max-width: 1100px) {
  .slide-caption {
    max-width: calc(100% - 80px);
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 92px;
  }
  .slide-title {
    font-size: clamp(38px, 8vw, 72px);
  }
}
@media (max-width: 640px) {
  .slide-caption {
    max-width: calc(100% - 48px);
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 84px;
  }
  .slide-title {
    font-size: clamp(36px, 12vw, 58px);
  }
  .slide-cat {
    font-size: 10px;
    line-height: 1.7;
  }
}


/* Contact privacy + Netlify form */
.hidden-field {
  display: none !important;
}
.contact-reveal-btn {
  width: fit-content;
  padding-left: 28px;
  padding-right: 28px;
  background: transparent;
}
.revealed-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.revealed-contact a {
  font-size: 14px;
  color: #5a5650;
}

/* Mobile fixes */
@media (max-width: 960px) {
  .nav-links.open,
  #nav.light-nav .nav-links.open {
    background: var(--black);
  }
  .nav-links.open a,
  #nav.light-nav .nav-links.open a,
  .nav-links.open .drop li a,
  #nav.light-nav .nav-links.open .drop li a {
    color: rgba(255,255,255,0.78) !important;
  }
  .nav-links.open a:hover,
  #nav.light-nav .nav-links.open a:hover {
    color: #fff !important;
  }
  .slide-caption {
    max-width: calc(100% - 48px);
    padding: 0 24px 148px !important;
    gap: 8px;
  }
  .slide-title {
    font-size: clamp(42px, 13vw, 68px) !important;
    line-height: 1.02 !important;
  }
  .slide-cat {
    max-width: 100%;
    display: block;
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: 0.14em;
    margin-top: 6px;
  }
  .slide-controls {
    right: 24px !important;
    bottom: 62px !important;
    gap: 12px;
  }
  .ctrl-btn {
    width: 38px;
    height: 38px;
  }
  .dot {
    width: 18px;
  }
  .dot.active {
    width: 30px;
  }
  .press {
    padding: 88px 24px;
  }
  .press-quote {
    font-size: clamp(27px, 8vw, 42px);
    line-height: 1.55;
    max-width: 620px;
  }
}
@media (max-width: 420px) {
  .slide-title {
    font-size: clamp(38px, 12.5vw, 56px) !important;
  }
  .slide-caption {
    padding-bottom: 156px !important;
  }
  .slide-controls {
    bottom: 58px !important;
  }
}


/* Intimate project tiles */
.intimate-hero-bg img,
.intimate-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intimate-item-link {
  display: block;
}
.intimate-photo {
  transition: transform 0.8s var(--ease);
}
.intimate-item:hover .intimate-photo {
  transform: scale(1.04);
}
