/* ══════════════════════════════════════════════════════
   MDeeBoss Portfolio — Stylesheet
   PRD: Clean · Minimal · Bold Typography · Web3 Editorial
   ══════════════════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --milk:    #F5F2EC;
  --black:   #0D0D0D;
  --ink:     #1A1A1A;
  --gray:    #6B6B6B;
  --lgray:   #A8A8A8;
  --teal:    #00C9B8;
  --teal-dk: #009E90;
  --border:  rgba(13,13,13,0.12);
  --white:   #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1200px;
  --nav-h: 72px;
  --radius: 2px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--milk);
  color: var(--black);
  overflow-x: hidden;
}

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

/* ─── Container ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 900px) { .container { padding: 0 24px; } }

/* ─── Section ─── */
.section {
  padding: 120px 0;
}
.section-milk { background: var(--milk); }
@media (max-width: 768px) { .section { padding: 80px 0; } }

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ─── Typography Scale ─── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}
.section-eyebrow--light { color: rgba(255,255,255,0.5); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--black);
  padding: 14px 4px;
  border-bottom: 1.5px solid var(--black);
  border-radius: 0;
}
.btn-ghost:hover {
  color: var(--teal);
  border-color: var(--teal);
}

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(245, 242, 236, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  flex-shrink: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width 0.25s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--black); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-cta {
  flex-shrink: 0;
  font-size: 0.85rem;
  padding: 10px 20px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.25s;
}
@media (max-width: 900px) {
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--milk);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .nav-links.open + .nav-cta { display: flex; }
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  background: var(--milk);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(0,201,184,0.3);
  border-radius: 100px;
  background: rgba(0,201,184,0.06);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--black);
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lgray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-deco-letter {
  font-family: var(--font-display);
  font-size: clamp(160px, 20vw, 280px);
  font-weight: 900;
  color: rgba(13,13,13,0.04);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.avatar-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
}
.hero-avatar {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.hero-badge {
  position: absolute;
  z-index: 2;
  right: -16px;
  bottom: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-badge-2 {
  right: auto;
  left: -16px;
  bottom: 40px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,201,184,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,201,184,0); }
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lgray);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(4px); } }

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 40px;
  }
  .hero-sub, .hero-actions { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-badge { right: 8px; bottom: 80px; }
  .hero-badge-2 { left: 8px; bottom: 20px; }
  .hero-deco-letter { font-size: 120px; }
}

/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-bio .section-title { margin-bottom: 28px; }
.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}
.about-body strong { color: var(--black); font-weight: 600; }
.about-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.brand-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--gray);
  transition: all 0.2s;
  cursor: default;
}
.brand-tag:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Services */
.services-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lgray);
  margin-bottom: 32px;
}
.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  min-width: 32px;
  padding-top: 2px;
}
.service-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.service-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray);
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ══════════════════════════════════════════════════════
   WORK
   ══════════════════════════════════════════════════════ */
.work-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.work-header .section-title { margin: 0; }
.work-header-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  align-self: end;
  padding-bottom: 8px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Work Card */
.work-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.work-card--featured {
  grid-column: span 2;
}
.work-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.work-card--featured .work-card-inner { aspect-ratio: 16/9; }
.work-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card:hover .work-card-bg { transform: scale(1.04); }
.video-thumb-text {
  opacity: 0.25;
  transition: opacity 0.3s;
}
.work-card:hover .video-thumb-text { opacity: 0.15; }

/* Card Content overlay */
.work-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  z-index: 2;
}
.work-card--featured .work-card-content { padding: 36px; }
.work-type {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.work-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}
.work-card--featured .work-title { font-size: 1.5rem; }
.work-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 500px;
}
.work-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 3;
}
.work-card:hover .play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
.work-card--featured .play-btn { width: 72px; height: 72px; }

@media (max-width: 900px) {
  .work-header { grid-template-columns: 1fr; gap: 16px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--featured { grid-column: span 1; }
}

/* ══════════════════════════════════════════════════════
   PROOF OF WORK
   ══════════════════════════════════════════════════════ */
.proof { background: var(--white); }

/* Testimonial Banner */
.testimonial-banner {
  background: var(--milk);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.testimonial-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--teal);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.25;
  position: absolute;
  top: -10px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-source {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lgray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Proof Grid */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.proof-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: var(--teal);
}
.proof-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--milk);
}
.proof-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease-out);
}
.proof-card:hover .proof-img-wrap img { transform: scale(1.04); }
.proof-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.proof-card:hover .proof-overlay { opacity: 1; }
.proof-info {
  padding: 20px 24px;
}
.proof-type {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.proof-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.proof-detail {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* Stats Strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 8px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--milk); }
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--black);
}
.stat-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lgray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

@media (max-width: 768px) {
  .proof-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-block:nth-child(4) { border-top: 1px solid var(--border); }
  .testimonial-banner { padding: 32px 24px; }
}

/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s;
}
.contact-link:hover {
  border-color: var(--teal);
  background: rgba(0,201,184,0.05);
}
.contact-link-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-link-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.contact-link-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(0,201,184,0.04);
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,201,184,0.3);
}
.btn-submit.success {
  background: #22c55e;
  color: var(--white);
}
.btn-submit.loading { opacity: 0.7; pointer-events: none; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 24px; }
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex: 1;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
@media (max-width: 600px) {
  .footer-inner { justify-content: center; text-align: center; }
  .footer-copy { flex: unset; width: 100%; order: 3; }
}

/* ══════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 700px;
  width: 100%;
  position: relative;
  cursor: default;
}
.lightbox-inner img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-inner p {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.5;
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════
   SCROLLBAR
   ══════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ══════════════════════════════════════════════════════
   SELECTION
   ══════════════════════════════════════════════════════ */
::selection { background: var(--teal); color: var(--white); }
