/* =====================================================
   ERTEKAAZ PHOTOGRAPHY — GLOBAL STYLES
   ===================================================== */

:root {
  --bg: #000000;
  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.5);
  --text-meta: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.12);
  --transition-fast: 0.25s ease;
  --transition-med: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s 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(--bg);
  color: var(--text);
  font-family: "loos-extended", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  overflow-x: hidden;
  cursor: none;
}

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

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

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

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

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  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: transform 0.15s ease, width 0.4s ease, height 0.4s ease, opacity 0.4s ease, border-color 0.4s ease;
}

.cursor.hovered { width: 12px; height: 12px; }
.cursor-ring.hovered { width: 60px; height: 60px; border-color: rgba(255,255,255,0.8); }

/* =====================================================
   PAGE TRANSITION OVERLAY
   ===================================================== */

.page-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9000;
  transform: translateY(-100%);
  pointer-events: none;
}

.page-overlay.entering {
  animation: overlayIn 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-overlay.exiting {
  animation: overlayOut 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes overlayIn {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

@keyframes overlayOut {
  from { transform: translateY(0); }
  to   { transform: translateY(100%); }
}

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

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.0) 100%
  );
}

.hero-caption {
  position: absolute;
  top: 24px;
  left: 40px;
  text-align: left;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .05em;
  line-height: 1.7;
  max-width: 400px;
}

/* =====================================================
   INNER PAGE HEROES
   ===================================================== */

.about-hero,
.services-hero,
.work-page-hero,
.contact-hero {
  position: relative;
  height: 60vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
}

.contact-hero {
  height: 50vh;
  min-height: 300px;
}

.work-page-hero {
  min-height: 360px;
  padding-top: 0;
}

.about-hero-bg,
.services-hero-bg,
.work-page-hero-bg,
.contact-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-bg img,
.services-hero-bg img,
.work-page-hero-bg img,
.contact-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.28) grayscale(0.4);
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.about-hero-overlay,
.services-hero-overlay,
.work-page-hero-overlay,
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.92));
}

.about-hero-content,
.services-hero-content,
.work-page-hero-content,
.contact-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 56px;
}

.about-hero-content h1,
.services-hero-content h1,
.work-page-hero-content h1,
.contact-hero-content h1 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.5s forwards;
}

.about-hero-content p,
.services-hero-content p,
.work-page-hero-content p,
.contact-hero-content p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.7s forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}

/* =====================================================
   HEADER & NAV
   ===================================================== */

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 24px 40px 0;
  z-index: 600;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.header-top {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-meta);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInDown 0.8s ease 0.2s forwards;
}

/* ── Hamburger button ── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-top: 4px;
  margin-right: 4px;
  box-sizing: content-box;
  z-index: 600;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.8);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              opacity 0.25s ease,
              width 0.35s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Fullscreen nav overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-overlay-link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.15);
  line-height: 1.1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease, opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.nav-overlay-link:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-overlay.open .nav-overlay-link:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.nav-overlay.open .nav-overlay-link:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.13s; }
.nav-overlay.open .nav-overlay-link:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.nav-overlay.open .nav-overlay-link:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.23s; }
.nav-overlay.open .nav-overlay-link:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }

.nav-overlay-header {
  display: none;
}

.nav-overlay-close {
  display: none;
  position: absolute;
  top: 24px;
  right: 28px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.nav-overlay-close span {
  display: block;
  position: absolute;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.8);
  top: 50%;
  left: 50%;
}

.nav-overlay-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-overlay-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-overlay-link:hover {
  color: #fff;
}

.nav-overlay-num {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  min-width: 28px;
}

.nav-overlay-footer {
  position: absolute;
  bottom: 48px;
  left: 60px;
  display: flex;
  gap: 32px;
}

.nav-overlay-footer a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
}

.nav-overlay-footer a:hover {
  color: #fff;
}

/* Homepage nav — positioned in lower hero */
.main-nav {
  position: absolute;
  left: 0; right: 0;
  bottom: 185px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.main-nav a {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 14px;
  margin-right: 40px;
  transition: color var(--transition-fast);
}

.main-nav a:last-child { margin-right: 0; }
.main-nav a:hover { color: #fff; }

/* Homepage sticky header — appears on scroll */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-header.visible {
  transform: translateY(0);
}

.sticky-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

.sticky-brand {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  color: #fff;
}

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

.sticky-nav a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.sticky-nav a:hover { color: #fff; }

/* Inner page header */
.inner-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 24px 40px 0;
  z-index: 600;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}


.inner-header .header-top {
  animation: none;
  opacity: 1;
}

.inner-header .header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 16px;
}

.inner-header .header-bottom::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 120px;
  height: 1px;
  background: var(--border);
}

.inner-header .main-nav {
  position: static;
  display: flex;
  bottom: unset;
  padding: 0;
  border-top: none;
  animation: none;
  opacity: 1;
}

.inner-header .main-nav a {
  border-top: none;
  padding-top: 0;
  padding-right: 48px;
  margin-right: 0;
  color: var(--text);
}

.header-logo--right {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}

.header-logo--left {
  display: none;
}

.header-logo img {
  height: 64px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.header-logo:hover img { opacity: 1; }

/* Hamburger hidden on desktop — shown only in mobile via media query */
.hamburger {
  display: none;
}
.hamburger--inner {
  display: none;
}

/* Sticky hamburger hidden on desktop */
.sticky-hamburger {
  display: none;
}

/* =====================================================
   HERO IDENTITY (homepage)
   ===================================================== */

.hero-identity {
  position: absolute;
  bottom: 44px;
  left: 0; right: 0;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-wordmark {
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.brand-name {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
}

.brand-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 4px;
}

.hero-logo {
  width: clamp(48px, 6vw, 72px);
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

.hero-logo img { object-fit: contain; }

/* =====================================================
   PROJECTS GRID (homepage)
   ===================================================== */

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
  background: var(--bg);
}

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

.card-img-wrap {
  position: absolute;
  inset: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.6);
  transform: scale(1.05);
  transition: filter var(--transition-slow), transform var(--transition-slow);
}

.project-card:hover .card-img-wrap img {
  filter: grayscale(0) brightness(0.75);
  transform: scale(1.0);
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.0) 55%);
  z-index: 1;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.project-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 60%);
}

.card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
}

.card-title {
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1;
}

.card-details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height var(--transition-med), opacity var(--transition-med), transform var(--transition-med);
  margin-top: 0;
}

.card-details p {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.6;
}

.project-card:hover .card-details {
  max-height: 60px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 10px;
}

/* =====================================================
   MORE PROJECTS
   ===================================================== */

.more-projects {
  text-align: center;
  padding: 28px 40px 56px;
}

.more-link {
  font-size: 12px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-med);
}

.more-link:hover { gap: 16px; }

.more-link .arrow {
  font-size: 16px;
  transition: transform var(--transition-med);
}

.more-link:hover .arrow { transform: translateX(4px); }

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

.site-footer {
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  padding: 64px 40px 48px;
}

.footer-left {
  width: 38%;
  flex-shrink: 0;
  padding-top: 4px;
}

.footer-left img {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.footer-right { flex: 1; }

.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.footer-row-label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.footer-row-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-row-content a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.footer-row-content a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}

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

.footer-legal a {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* =====================================================
   SECTION TITLES
   ===================================================== */

.section-label {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-title {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 48px;
}

/* =====================================================
   WORK PAGE
   ===================================================== */

.work-filter {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  overflow-x: auto;
}

.filter-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-family: inherit;
  font-size: 10px;
  padding: 20px 28px 20px 0;
  cursor: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover { color: #fff; }

.filter-btn.active {
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 40px;
}

.project-grid .project-card { aspect-ratio: 4/3; }

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

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

.services-list {
  border-top: 1px solid var(--border);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  gap: 40px;
  transition: opacity var(--transition-fast);
}

.services-list:hover .service-item { opacity: 0.4; }
.services-list:hover .service-item:hover { opacity: 1; }

.service-num {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-meta);
  padding-top: 4px;
}

.service-name {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
}

.service-desc {
  font-family: 'loos-wide', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  max-width: 360px;
}

.service-price {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dim);
  text-align: right;
}

.process-section {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
}

.process-step {
  padding-right: 40px;
  border-right: 1px solid var(--border);
}

.process-step:last-child { border-right: none; }
.process-step:not(:first-child) { padding-left: 40px; }

.process-num {
  font-size: 40px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 20px;
}

.process-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}

.cta-banner {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
}

.cta-text p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: inherit;
  font-size: 11px;
  padding: 18px 36px;
  white-space: nowrap;
  transition: background var(--transition-fast), border-color var(--transition-fast), gap var(--transition-med);
  cursor: none;
}

.cta-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.7);
  gap: 20px;
}

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

.manifesto {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  max-width: 900px;
}

.manifesto blockquote {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.manifesto blockquote em {
  font-style: normal;
  color: rgba(255,255,255,0.35);
}

.clients-section {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 32px 0;
}

.clients-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.clients-track span {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

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

.recognition-section {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.rec-item {
  padding: 32px 40px 32px 0;
  border-right: 1px solid var(--border);
}

.rec-item:last-child { border-right: none; }
.rec-item:not(:first-child) { padding-left: 40px; }

.rec-year {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.rec-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rec-org {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.about-section {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
}

.about-text p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  margin-bottom: 20px;
}

.about-text p.about-body {
  font-family: 'loos-wide', sans-serif;
  font-weight: 300;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-image img {
  filter: grayscale(0.3);
  transition: filter var(--transition-slow);
}

.about-image:hover img { filter: grayscale(0); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 6px;
}

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

.contact-section {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 40px;
}

.contact-detail {
  margin-bottom: 40px;
}

.contact-detail .label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.contact-detail p,
.contact-detail a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  transition: color var(--transition-fast);
}

.contact-detail a:hover { color: #fff; }

.form-success {
  display: none;
  padding: 24px 0;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.map-section {
  height: 280px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-section img {
  position: absolute;
  inset: 0;
  filter: grayscale(1) brightness(0.3);
}

.map-label {
  position: relative;
  z-index: 1;
  text-align: center;
}

.map-label span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.map-label p {
  font-size: 14px;
  font-weight: 400;
}

.form-group {
  margin-bottom: 32px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 0;
  outline: none;
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: rgba(255,255,255,0.6);
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.form-group select option { background: #000; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: inherit;
  font-size: 11px;
  padding: 16px 32px;
  cursor: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), gap var(--transition-med);
}

.form-submit:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.7);
  gap: 20px;
}

/* =====================================================
   ANIMATIONS & SCROLL REVEAL
   ===================================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.stagger > * { transition-delay: calc(var(--i, 0) * 0.08s); }

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

@media (max-width: 960px) {
  .project-grid { grid-template-columns: 1fr 1fr; }
  .about-section, .contact-section { grid-template-columns: 1fr; gap: 48px; }
  .service-item { grid-template-columns: 1fr 1fr; }
  .service-price { grid-column: 2; }
  .service-desc { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-step { border-right: none; padding: 0; }
  .recognition-grid { grid-template-columns: 1fr 1fr; }
  .rec-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .rec-item:last-child { border-bottom: none; }
  .rec-item:not(:first-child) { padding-left: 0; }
}

@media (max-width: 640px) {
  /* ── Header & sticky ── */
  .site-header, .inner-header { padding: 20px 24px 0; }
  .nav-overlay { padding: 32px; justify-content: center; overflow-y: auto; }
  .nav-overlay-footer { left: 32px; bottom: 36px; }
  .nav-overlay-header {
    display: block;
    position: absolute;
    top: 24px;
    left: 32px;
  }
  .nav-overlay-close { display: block; }
  .nav-overlay-logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
  }

  /* ── Show hamburger on mobile ── */
  .hamburger {
    display: flex;
    opacity: 1;
    animation: none;
  }

  /* ── Inner header: mobile layout ── */
  .inner-header .header-top { display: none; }
  .inner-header .header-bottom::before { display: none; }
  .inner-header .main-nav { display: none; }
  .header-logo--right { display: none; }
  .header-logo--left {
    display: block;
    position: static;
    transform: none;
  }
  .header-logo--left img { height: 44px; }
  .inner-header .header-bottom {
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
  }
  .hamburger--inner {
    display: flex;
    opacity: 1;
    animation: none;
    position: static;
    margin: 0;
  }
  .sticky-header-inner { padding: 14px 24px; }
  .sticky-nav { gap: 24px; }

  /* ── Hero: hide time & caption, full-screen layout ── */
  .site-header .header-top { display: none; }
  .hero-caption { display: none; }

  .hero {
    height: 100svh;
    min-height: 600px;
  }

  /* Identity block */
  .hero-identity {
    padding: 0 24px;
    bottom: 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-logo { order: -1; }
  .hero-logo img { width: 72px; height: 72px; }
  .brand-name { font-size: clamp(32px, 9vw, 48px); }

  /* ── Inner page heroes ── */
  .about-hero-content, .services-hero-content,
  .work-page-hero-content, .contact-hero-content { padding: 0 24px 40px; }
  .about-hero, .services-hero, .work-page-hero, .contact-hero { height: 50vh; min-height: 280px; }

  /* ── Project grid ── */
  .project-grid { grid-template-columns: 1fr; padding: 16px; gap: 16px; }
  .projects-grid { grid-template-columns: 1fr; gap: 16px; padding: 16px; }

  /* ── Work filter ── */
  .work-filter { padding: 0 24px; flex-wrap: wrap; gap: 10px; }

  /* ── About ── */
  .about-section { padding: 48px 24px; grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 48px 24px; }
  .recognition-section { padding: 48px 24px; }
  .recognition-grid { grid-template-columns: 1fr; }

  /* ── Services ── */
  .services-section, .process-section { padding: 48px 24px; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
  }
  .process-step:not(:first-child) { padding-left: 0; }
  .process-step:last-child { border-bottom: none; }

  /* ── Sticky nav mobile ── */
  .sticky-nav--desktop { display: none; }
  .sticky-hamburger {
    display: flex;
    opacity: 1;
    animation: none;
    position: static;
    margin: 0;
  }
  .sticky-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .sticky-hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
  .sticky-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .service-item { grid-template-columns: 1fr; gap: 12px; }
  .service-desc { max-width: 100%; }

  /* ── Contact ── */
  .contact-section { padding: 48px 24px; flex-direction: column; gap: 48px; }

  /* ── CTA ── */
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 40px 24px; gap: 24px; }

  /* ── Footer ── */
  .site-footer { padding: 48px 24px 32px; flex-direction: column; gap: 40px; }
  .footer-left { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .footer-row { flex-direction: column; gap: 8px; }

  /* ── Cookie banner ── */
  .cookie-banner { bottom: 0; left: 0; right: 0; width: 100%; max-width: 100%;
    transform: translateY(24px); border-left: none; border-right: none; border-bottom: none; }
  .cookie-banner.visible { transform: translateY(0); }
  .cookie-banner.hiding { transform: translateY(24px); }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* =====================================================
   LEGAL PAGES (Privacy Policy, Terms, Cookies)
   ===================================================== */

.legal-hero {
  background: #0a0a0a;
  padding: 160px 80px 80px;
  border-bottom: 1px solid #1a1a1a;
}

.legal-hero-content h1 {
  font-family: 'acumin-pro', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.legal-hero-content p {
  font-family: 'acumin-pro', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #666;
  text-transform: uppercase;
  margin: 0;
}

.legal-section {
  background: #0a0a0a;
  padding: 80px 80px 120px;
}

.legal-container {
  max-width: 800px;
}

.legal-block {
  margin-bottom: 56px;
}

.legal-block h2 {
  font-family: 'acumin-pro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.legal-block p {
  font-family: 'acumin-pro', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #999;
  margin: 0 0 14px;
}

.legal-block p strong {
  font-weight: 400;
  color: #bbb;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  margin: 12px 0 14px 0;
  padding-left: 20px;
  list-style: none;
}

.legal-block ul li {
  font-family: 'acumin-pro', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #999;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.legal-block ul li strong {
  font-weight: 400;
  color: #bbb;
}

.legal-block ul li::before {
  content: '—';
  position: absolute;
  left: -4px;
  color: #444;
}

.legal-block a {
  color: #ccc;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #444;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.legal-block a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

/* Cookie tables */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'acumin-pro', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #999;
}

.cookie-table th {
  text-align: left;
  font-family: 'acumin-pro', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  border-bottom: 1px solid #1e1e1e;
  padding: 10px 14px 10px 0;
}

.cookie-table td {
  padding: 12px 14px 12px 0;
  border-bottom: 1px solid #141414;
  vertical-align: top;
  line-height: 1.6;
}

.cookie-table td strong {
  font-weight: 400;
  color: #bbb;
}

.cookie-table td code {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #bbb;
  background: #141414;
  padding: 2px 6px;
  border-radius: 3px;
}

@media (hover: none), (max-width: 1024px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 120px 24px 56px;
  }
  .legal-section {
    padding: 56px 24px 80px;
  }
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */

.cookie-banner {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  width: calc(100% - 64px);
  max-width: 680px;
  background: #111;
  border: 1px solid #222;
  padding: 20px 24px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner.hiding {
  opacity: 0;
  transform: translateX(-50%) translateY(24px);
  pointer-events: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  font-family: 'acumin-pro', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #888;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner-inner p a {
  color: #bbb;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #444;
}

.cookie-banner-inner p a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'acumin-pro', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid #333;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cookie-btn--accept {
  border-color: #fff;
  color: #fff;
}

.cookie-btn--accept:hover {
  background: #fff;
  color: #000;
}

.cookie-btn--decline:hover {
  border-color: #555;
  color: #ccc;
}

