/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --color-bg: #1a1a1a;
  --color-bg-alt: #141414;
  --color-surface: #252525;
  --color-surface-2: #2e2e2e;
  --color-accent: #e03c31;
  --color-accent-dark: #b52e25;
  --color-text: #ffffff;
  --color-text-muted: #888888;
  --color-text-dim: #555555;
  --color-cream: #f0ebe0;
  --font-display: 'Anton', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Courier New', monospace;
  --grid-size: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --shadow-red: 0 20px 60px rgba(224, 60, 49, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

/* Grid texture overlay */
.grid-texture {
  position: relative;
}

.grid-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 28px;
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.nav-logo-name span {
  display: block;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-transform: lowercase;
  margin-top: 2px;
}

.nav-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  fill: var(--color-accent);
  width: 28px;
  height: 28px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-title .line-white { color: var(--color-text); }
.hero-title .line-red { color: var(--color-accent); }

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.hero-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
}

.hero-badge.accent {
  background: rgba(224, 60, 49, 0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Floating decorative objects */
.hero-float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-float img {
  border-radius: 4px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.hero-float-1 {
  top: 8%;
  left: 10%;
  width: clamp(120px, 18vw, 260px);
  transform: rotate(-8deg);
  animation: float1 6s ease-in-out infinite;
}

.hero-float-2 {
  top: 5%;
  right: 5%;
  width: clamp(140px, 20vw, 300px);
  transform: rotate(6deg);
  animation: float2 7s ease-in-out infinite;
}

.hero-float-3 {
  bottom: 15%;
  left: 3%;
  width: clamp(100px, 14vw, 200px);
  transform: rotate(-12deg);
  animation: float3 5s ease-in-out infinite;
}

.hero-float-4 {
  bottom: 5%;
  right: 8%;
  width: clamp(130px, 16vw, 220px);
  transform: rotate(10deg);
  animation: float1 8s ease-in-out infinite reverse;
}

.hero-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  margin-top: -120px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hero-dot:nth-child(1) { background: #e03c31; }
.hero-dot:nth-child(2) { background: #f59e0b; }
.hero-dot:nth-child(3) { background: #3b82f6; }

@keyframes float1 {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-16px); }
}
@keyframes float3 {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-8px); }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  background-color: var(--color-surface);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--color-text);
  text-transform: uppercase;
}

.marquee-icon {
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 900;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Photo cutout */
.about-photo-col {
  position: relative;
}

.about-photo-wrapper {
  position: relative;
  display: inline-block;
}

.about-photo-cutout {
  width: 280px;
  height: 360px;
  object-fit: cover;
  object-position: top;
  clip-path: polygon(20% 0%, 100% 0%, 100% 85%, 80% 100%, 0% 100%, 0% 15%);
  filter: grayscale(20%);
  position: relative;
  z-index: 2;
}

.about-photo-border {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 280px;
  height: 360px;
  clip-path: polygon(20% 0%, 100% 0%, 100% 85%, 80% 100%, 0% 100%, 0% 15%);
  background: var(--color-accent);
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: -10px;
  background: var(--color-cream);
  border: 2px solid #333;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #222;
  transform: rotate(-2deg);
  z-index: 3;
}

.about-location {
  position: absolute;
  top: -16px;
  right: -20px;
  background: var(--color-cream);
  border: 1.5px solid #333;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  transform: rotate(3deg);
  z-index: 3;
  text-align: center;
  line-height: 1.5;
}

/* About content */
.about-content {
  padding-top: 20px;
}

.about-hello {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  color: #111;
  margin-bottom: 24px;
}

.about-hello .name-accent {
  color: var(--color-accent);
}

.about-bio {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  max-width: 420px;
  margin-bottom: 40px;
}

.about-bio strong {
  color: #111;
  font-weight: 700;
}

/* Experience timeline */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: #111;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-section-title .lang-badge {
  font-size: 9px;
  background: #e03c31;
  color: white;
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1px;
}

.exp-item {
  margin-bottom: 18px;
}

.exp-year {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 1px;
}

.exp-year span {
  color: #888;
}

.exp-company {
  font-weight: 700;
  font-size: 13px;
  color: #111;
}

.exp-role {
  font-size: 12px;
  color: #666;
}

.exp-clients {
  font-size: 11px;
  color: var(--color-accent);
  font-style: italic;
  margin-top: 4px;
  line-height: 1.5;
}

/* Studies */
.study-item {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.study-year {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--color-accent);
  min-width: 36px;
}

.study-name {
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

.study-place {
  font-size: 11px;
  color: #666;
}

/* Focus list */
.focus-list {
  list-style: none;
}

.focus-list li {
  font-size: 13px;
  color: #333;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.focus-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Tools */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tool-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tool-ai { background: linear-gradient(135deg, #FF8C00, #FF4500); }
.tool-ps { background: linear-gradient(135deg, #001E36, #31A8FF); }
.tool-ae { background: linear-gradient(135deg, #00005B, #9999FF); }
.tool-fig { background: linear-gradient(135deg, #F24E1E, #A259FF); }
.tool-pr { background: linear-gradient(135deg, #00005B, #9999FF); }
.tool-id { background: linear-gradient(135deg, #49021F, #FF3366); }
.tool-xd { background: linear-gradient(135deg, #470137, #FF61F6); }

/* About polaroids */
.about-polaroids {
  display: flex;
  gap: 16px;
  margin-top: 50px;
  padding: 20px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.about-polaroids::-webkit-scrollbar { display: none; }

/* ============================================
   POLAROID COMPONENT
   ============================================ */
.polaroid {
  background: white;
  padding: 10px 10px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  flex-shrink: 0;
  position: relative;
}

.polaroid:nth-child(1) { transform: rotate(-3deg); }
.polaroid:nth-child(2) { transform: rotate(2deg); }
.polaroid:nth-child(3) { transform: rotate(-1.5deg); }
.polaroid:nth-child(4) { transform: rotate(3.5deg); }

.polaroid img {
  width: 160px;
  height: 140px;
  object-fit: cover;
  display: block;
}

.polaroid-caption {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #333;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ============================================
   PROJECT SECTIONS
   ============================================ */
.project-banner {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.project-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
}

.project-banner-bg.grid-texture::before {
  z-index: 0;
}

.project-banner-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.8;
}

.project-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-bg) 35%, rgba(26,26,26,0.4) 100%);
  z-index: 1;
}

.project-banner-content {
  position: relative;
  z-index: 2;
  padding: 60px 60px 80px;
  max-width: 600px;
}

.project-nav {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}

.project-cat-badge {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.project-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-title {
  font-family: var(--font-display);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.project-title .t-thin {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--color-text);
  display: block;
  font-style: italic;
}

.project-title .t-bold {
  font-size: clamp(52px, 8vw, 110px);
  color: var(--color-accent);
  display: block;
}

.project-subtitle {
  display: inline-block;
  background: rgba(255,255,255,0.9);
  color: #222;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 12px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  transform: rotate(-1deg);
}

.project-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 380px;
  line-height: 1.7;
}

/* Scattered float objects in project */
.project-float {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.project-float img {
  border-radius: 4px;
}

/* Project polaroid strip */
.polaroid-strip {
  background: var(--color-bg);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.polaroid-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.polaroid-strip-inner::-webkit-scrollbar { display: none; }

/* Dark polaroid variant */
.polaroid-dark {
  background: white;
  padding: 10px 10px 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.polaroid-dark:hover {
  transform: scale(1.05) rotate(0deg) !important;
}

.polaroid-dark:nth-child(1) { transform: rotate(-4deg); }
.polaroid-dark:nth-child(2) { transform: rotate(3deg); }
.polaroid-dark:nth-child(3) { transform: rotate(-2deg); }
.polaroid-dark:nth-child(4) { transform: rotate(4deg); }

.polaroid-dark img {
  width: 220px;
  height: 180px;
  object-fit: cover;
  display: block;
}

.polaroid-dark-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #333;
  text-align: left;
  line-height: 1.3;
}

/* ============================================
   BRANDING PROJECT — TABS
   ============================================ */
.branding-section {
  background: var(--color-bg);
  position: relative;
}

.branding-banner {
  min-height: 75vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.branding-content {
  position: relative;
  z-index: 2;
  padding: 60px 60px 80px;
  max-width: 560px;
}

.branding-tabs {
  background: var(--color-bg-alt);
  padding: 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.branding-tabs::-webkit-scrollbar { display: none; }

.branding-tab {
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  background: none;
  border-radius: 0;
  font-family: var(--font-body);
}

.branding-tab:hover {
  color: var(--color-text-muted);
}

.branding-tab.active {
  color: var(--color-text);
  border-bottom-color: var(--color-accent);
}

.branding-panel {
  display: none;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 60px 80px;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.branding-panel.active {
  display: grid;
}

.branding-project-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-dim);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.branding-project-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  color: var(--color-accent);
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 16px;
}

.branding-subtitle {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 12px;
}

.branding-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.branding-tools {
  font-size: 12px;
  color: var(--color-text-dim);
  margin-bottom: 24px;
}

.branding-tools span {
  color: var(--color-text-muted);
  font-weight: 600;
}

.color-palette {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px;
  border-radius: var(--radius);
  margin-top: 8px;
}

.testimonial-header {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: var(--color-accent);
  letter-spacing: 2px;
  font-size: 11px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-style: normal;
  color: var(--color-accent);
}

/* Mockup images right column */
.mockup-stack {
  position: relative;
  height: 500px;
}

.mockup-img {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.mockup-img:nth-child(1) {
  top: 0;
  right: 0;
  width: 65%;
  z-index: 3;
}

.mockup-img:nth-child(2) {
  top: 30%;
  left: 0;
  width: 55%;
  z-index: 2;
}

.mockup-img:nth-child(3) {
  bottom: 0;
  right: 5%;
  width: 50%;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  padding: 120px 40px 60px;
  text-align: center;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.footer-logo {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-icon {
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  fill: white;
  width: 40px;
  height: 40px;
}

.footer-logo-text {
  text-align: left;
}

.footer-logo-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 28px;
  color: var(--color-text);
  line-height: 1;
}

.footer-logo-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 2px;
}

.footer-cta {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.footer-contacts {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 36px;
  margin-top: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer-contact-item:hover {
  color: var(--color-text);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  font-size: 11px;
  color: var(--color-text-dim);
  letter-spacing: 1px;
}

/* ============================================
   DECORATIVE BG TEXT
   ============================================ */
.bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  color: rgba(255,255,255,0.02);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
  line-height: 1;
  z-index: 0;
}

/* ============================================
   SECTION DIVIDER
   ============================================ */
.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 260px 1fr;
    gap: 50px;
    padding: 0 30px;
  }
  .branding-panel {
    padding: 40px;
    gap: 40px;
  }
  .project-banner-content {
    padding: 40px 40px 60px;
  }
  .mockup-stack {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .hero-float-3, .hero-float-4 { display: none; }
  .hero-float-1 { top: 5%; left: 2%; width: 120px; }
  .hero-float-2 { top: 3%; right: 2%; width: 130px; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .about-photo-col {
    display: flex;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-banner-img {
    opacity: 0.3;
    width: 100%;
  }

  .project-banner-content {
    padding: 30px 24px 50px;
  }

  .branding-panel {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .mockup-stack {
    height: 300px;
  }

  .branding-tabs {
    padding: 0 24px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 20px;
  }

  .polaroid-strip-inner {
    padding: 0 24px;
  }

  .nav { padding: 16px 20px; }

  .about { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -1px; }
  .hero-meta { flex-direction: column; gap: 8px; }
  .about-photo-cutout { width: 240px; height: 310px; }
  .about-photo-border { width: 240px; height: 310px; }
  .branding-project-title { font-size: 56px; }
}
