/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --red:    #e63946;
  --yellow: #f4c430;
  --dark:   #0e0e0e;
  --mid:    #333;
  --muted:  #888;
  --light:  #f5f4f0;
  --white:  #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ── */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .08s ease, width .25s, height .25s, opacity .25s;
}
body:hover #cursor { opacity: 1; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--dark); border-radius: 2px; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 2.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
#mainNav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.07); }

.brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  letter-spacing: 1px;
}
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--white);
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  width: 22px; height: 22px;
  border-radius: 5px;
  margin-right: 5px;
  letter-spacing: 0;
}
.brand-dot-r { color: var(--red); }
.brand-dot-y { color: var(--yellow); }

.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content:'';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--dark);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }

.lang-sw {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}
.lang-sw .on { color: var(--dark); font-weight: 700; }

.btn-mail {
  background: var(--dark);
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition);
}
.btn-mail:hover { background: var(--mid); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════ */
.page { display: none; min-height: 100vh; padding-top: 80px; }
.page.active { display: block; }

/* ═══════════════════════════════════════
   HERO / HOME
═══════════════════════════════════════ */
#page-home {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2.5rem 2rem;
  position: relative;
}

.hero-tag {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: fadeUp .6s .1s ease both;
}

.hero-title-wrap {
  position: relative;
  line-height: 0.87;
}
.hero-t1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 12.5vw, 185px);
  color: var(--dark);
  display: block;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeUp .6s .2s ease both;
}
.hero-t2 {
  font-family: var(--font-display);
  font-size: clamp(80px, 12.5vw, 185px);
  color: transparent;
  -webkit-text-stroke: 2px var(--dark);
  display: block;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeUp .6s .3s ease both;
}

/* Arrow badge */
.arrow-badge {
  position: absolute;
  top: clamp(24px,4.5vw,72px);
  left: clamp(180px, 26vw, 360px);
  width: 54px; height: 54px;
  background: var(--white);
  border: 2px solid var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: transform var(--transition), background var(--transition);
}
.arrow-badge:hover { transform: rotate(15deg) scale(1.1); background: var(--yellow); }
.arrow-badge svg { width: 20px; height: 20px; }

/* Silhouette person */
.hero-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 580px;
  z-index: 2;
  animation: fadeUp .8s .35s ease both;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* Si img/pdp.png existe, elle s’affiche à l’intérieur */
  background: none;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
body.has-real-hero .hero-person {
  background-image: url('img/pdp.png');
}
body.has-real-hero .hero-person .person-body {
  opacity: 0;
}
.person-body {
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, #d0d0d0 0%, #a8a8a8 100%);
  border-radius: 130px 130px 0 0;
  position: relative;
}
.person-body::before { /* head */
  content:'';
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 100px;
  background: #c5c5c5;
  border-radius: 50%;
}
.person-body::after { /* hair */
  content:'';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 108px; height: 68px;
  background: #a0a0a0;
  border-radius: 54px 54px 0 0;
}

/* location + logos row */
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp .6s .45s ease both;
}
.hero-location {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
}
.client-list {
  display: flex; gap: 2rem; align-items: center;
}
.client-list span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ccc;
  text-transform: uppercase;
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  gap: 0.8rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 6;
  opacity: 0;
  animation: fadeUp .6s .55s ease both;
}
.btn-primary-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
}
.btn-primary-dark:hover { background: transparent; color: var(--dark); }
.btn-ghost-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
}
.btn-ghost-dark:hover { background: var(--dark); color: var(--white); }

/* Ticker tape */
.ticker-wrap {
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  padding: 0.7rem 0;
  position: relative;
  z-index: 3;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-inner span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 0 2.5rem;
  color: var(--white);
}
.ticker-inner span.dot { color: var(--yellow); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════ */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.5px;
  color: var(--dark);
}
.section-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   DESIGN PAGE
═══════════════════════════════════════ */
#page-design { background: var(--white); }

.design-intro {
  padding: 5rem 2.5rem 3rem;
  max-width: 900px;
}
.design-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--mid);
  max-width: 560px;
  margin-top: 1.2rem;
  font-weight: 300;
}

/* Projects grid */
.projects-grid {
  padding: 0 2.5rem 5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.proj-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.proj-card:hover .proj-overlay { opacity: 1; }
.proj-card:hover .proj-img { transform: scale(1.04); }

.proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

/* Placeholder coloured boxes */
.proj-placeholder {
  width: 100%;
  height: 100%;
  transition: transform .5s ease;
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.75);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.proj-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.proj-overlay span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  display: block;
}
.proj-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.proj-arrow svg { width: 16px; height: 16px; }

/* Grid placement */
.proj-a { grid-column: 1/8; height: 440px; }
.proj-b { grid-column: 8/13; height: 440px; }
.proj-c { grid-column: 1/5; height: 340px; }
.proj-d { grid-column: 5/9; height: 340px; }
.proj-e { grid-column: 9/13; height: 340px; }

@media (max-width: 900px) {
  .proj-a,.proj-b,.proj-c,.proj-d,.proj-e {
    grid-column: 1/-1;
    height: 280px;
  }
}

/* Skills bar */
.skills-section {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 2.5rem;
}
.skills-section .section-heading { color: var(--white); }
.skills-section .section-heading em { color: var(--muted); }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.skill-item { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.2rem; }
.skill-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.skill-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.skill-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}

/* Process steps */
.process-section {
  padding: 5rem 2.5rem;
  background: var(--light);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid #ddd;
}
.step {
  padding: 2rem 1.5rem 2rem 0;
  border-right: 1px solid #ddd;
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: #e8e8e8;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.step p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* Pricing */
.pricing-section { padding: 5rem 2.5rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.price-card:hover { border-color: var(--dark); transform: translateY(-4px); }
.price-card.featured {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.price-card.featured:hover { transform: translateY(-4px); }
.price-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -1px;
}
.price-amount sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.6rem; }
.price-period { font-size: 0.8rem; color: var(--muted); margin: 0.3rem 0 1.2rem; }
.price-card.featured .price-period { color: rgba(255,255,255,0.5); }
.price-features { list-style: none; font-size: 0.85rem; line-height: 2; }
.price-features li::before { content: '✓  '; font-weight: 700; color: var(--red); }
.price-features.white li::before { color: var(--yellow); }
.price-card .btn-primary-dark { margin-top: 1.5rem; width: 100%; text-align: center; }
.price-card.featured .btn-primary-dark {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.price-card.featured .btn-primary-dark:hover { background: var(--yellow); border-color: var(--yellow); }

/* ═══════════════════════════════════════
   PHOTOS PAGE
═══════════════════════════════════════ */
#page-photos { background: var(--dark); }

.photos-hero {
  padding: 5rem 2.5rem 3rem;
}
.photos-hero .section-heading { color: var(--white); }
.photos-hero p { font-size: 1rem; color: rgba(255,255,255,0.4); margin-top: 1rem; max-width: 480px; font-weight: 300; }

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0 2.5rem 2rem;
  flex-wrap: wrap;
}
.tab-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

/* Masonry-like grid */
.photo-grid {
  padding: 0 2.5rem 5rem;
  columns: 3 300px;
  column-gap: 1rem;
}
.photo-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.photo-item:hover .photo-cap { opacity: 1; transform: translateY(0); }
.photo-placeholder {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 1.5rem 1rem 0.8rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
}
.photo-cap h4 { font-size: 0.88rem; color: var(--white); font-weight: 500; }
.photo-cap span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* Photo story / editorial strip */
.editorial-strip {
  background: var(--white);
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.editorial-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(40px,5vw,72px);
  color: var(--dark);
  line-height: 0.92;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
}
.editorial-strip h2 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.editorial-strip p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
.editorial-box {
  height: 480px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d0d0d0 0%, #888 100%);
  position: relative;
  overflow: hidden;
}
.editorial-box::after {
  content: 'EDITORIAL';
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
  .editorial-strip { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
#page-about { background: var(--light); }

.about-header {
  padding: 5rem 2.5rem 0;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 3rem 2.5rem 5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
}

.about-portrait {
  aspect-ratio: 3/4;
  border-radius: 12px;
  background: linear-gradient(160deg, #d8d8d8 0%, #999 100%);
  position: relative;
  overflow: hidden;
}
.about-portrait::before { /* head */
  content:'';
  position: absolute;
  top: 60px; left: 50%;
  transform: translateX(-50%);
  width: 130px; height: 130px;
  background: #c0c0c0;
  border-radius: 50%;
}
.about-portrait::after { /* body */
  content:'';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 280px;
  background: #b0b0b0;
  border-radius: 130px 130px 0 0;
}
.portrait-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  z-index: 2;
}
.portrait-year {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(40px,5.5vw,80px);
  line-height: 0.9;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}
.about-content h2 em { font-family: var(--font-serif); font-style: italic; color: var(--muted); }
.about-content p { font-size: 0.95rem; color: var(--mid); line-height: 1.85; font-weight: 300; margin-bottom: 1rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-num sup { font-size: 1.3rem; vertical-align: top; margin-top: 0.4rem; }
.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* Values */
.values-section {
  background: var(--dark);
  padding: 5rem 2.5rem;
}
.values-section .section-heading { color: var(--white); margin-bottom: 3rem; }
.value-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.8rem 0;
  gap: 2rem;
}
.value-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.value-num { font-family: var(--font-display); font-size: 1rem; color: rgba(255,255,255,0.25); width: 40px; flex-shrink: 0; }
.value-name { font-family: var(--font-display); font-size: 1.8rem; color: var(--white); letter-spacing: 0.04em; flex: 1; }
.value-desc { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 340px; }

/* Experience timeline */
.timeline-section { padding: 5rem 2.5rem; background: var(--light); }
.timeline { margin-top: 3rem; }
.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ddd;
}
.tl-year { font-family: var(--font-display); font-size: 1.1rem; color: var(--muted); padding-top: 3px; }
.tl-body h4 { font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 0.2rem; }
.tl-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
.tl-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 0.3rem;
}

/* Contact band */
.contact-band {
  background: var(--red);
  color: var(--white);
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.contact-band h2 {
  font-family: var(--font-display);
  font-size: clamp(40px,7vw,110px);
  letter-spacing: -1px;
  line-height: 0.9;
}
.contact-band p { font-size: 0.95rem; opacity: 0.75; max-width: 420px; font-weight: 300; }
.btn-white {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--white);
  padding: 0.9rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
}
.btn-white:hover { background: transparent; color: var(--white); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 2.5rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.footer-brand .brand { font-size: 2.5rem; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 0.8rem; max-width: 260px; }

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: 5px;
  margin-bottom: 0.6rem;
  outline: none;
  transition: border-color var(--transition);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:focus { border-color: rgba(255,255,255,0.4); }
.footer-newsletter button {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background var(--transition);
}
.footer-newsletter button:hover { background: #c0392b; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.socials { display: flex; gap: 1rem; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition);
}
.socials a:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Mobile navbar fix */
@media (max-width: 992px) {
  #mainNav { padding: 0.9rem 1.5rem; }
  .hero-inner { padding: 3rem 1.5rem 2rem; }
  .hero-person { display: none; }
  .projects-grid, .photo-grid { padding: 0 1.5rem 3rem; }
  .photos-hero, .design-intro, .about-header, .about-split,
  .skills-section, .process-section, .pricing-section,
  .editorial-strip, .values-section, .timeline-section,
  footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .filter-tabs { padding-left: 1.5rem; }
}
