/* ============================================================
   Com'Nina - Graphiste | style.css?v=1
   Dark plum (#1a0f1f) primary, pink (#ec4899) accent, cream (#fdf2f8)
   ============================================================ */

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

:root {
  --plum:   #1a0f1f;
  --plum2:  #2d1a38;
  --plum3:  #3d2350;
  --pink:   #ec4899;
  --pink2:  #f472b6;
  --pink3:  #fce7f3;
  --cream:  #fdf2f8;
  --white:  #ffffff;
  --grey:   #6b5b73;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(26,15,31,.45);
  --trans:  all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--plum);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--pink2); }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--cream);
}

/* ---------- GOOGLE FONTS IMPORT ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- UTILITY ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-pink { color: var(--pink); }
.text-cream { color: var(--cream); }

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-primary:hover {
  background: transparent;
  color: var(--pink);
}
.btn-outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
}
.btn-cream {
  background: var(--cream);
  color: var(--plum);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: transparent;
  color: var(--cream);
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(26,15,31,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(236,72,153,.18);
  transition: var(--trans);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  height: 72px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo:hover img { opacity: .85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--cream);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: .02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
  background: rgba(236,72,153,.1);
}
.nav-links .nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--pink2);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--trans);
}

/* ---------- HERO (CSS background-image) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('/images/hero-animation.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,15,31,.87);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 24px 80px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(236,72,153,.12);
  border: 1px solid rgba(236,72,153,.35);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.hero h1 em {
  font-style: italic;
  color: var(--pink);
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(253,242,248,.82);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253,242,248,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--pink), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ---------- SHOWREEL SPLIT SECTION ---------- */
.showreel-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  align-items: center;
}
.showreel-text {
  padding: 60px;
  background: #1a0f1f;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showreel-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--white);
}
.showreel-text h2 .accent { color: var(--pink); }
.showreel-text p {
  color: rgba(253,242,248,.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.showreel-text .btn { margin-top: 16px; align-self: flex-start; }
.showreel-video-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  background: #0a0510;
}
.showreel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- SECTION STYLES ---------- */
.section {
  padding: 100px 24px;
}
.section-cream {
  background: var(--cream);
  color: var(--plum);
}
.section-cream h1,
.section-cream h2,
.section-cream h3,
.section-cream h4 { color: var(--plum); }
.section-cream p { color: var(--plum2); }
.section-plum { background: var(--plum); }
.section-plum2 { background: var(--plum2); }
.section-plum3 { background: var(--plum3); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: rgba(253,242,248,.72); max-width: 560px; margin: 0 auto; }
.section-cream .section-header p { color: var(--grey); }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

/* ---------- INTRO / ABOUT STRIP ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.intro-image-wrap img { width: 100%; border-radius: var(--radius); }
.intro-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(236,72,153,.3);
  border-radius: var(--radius);
  pointer-events: none;
}
.intro-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.intro-text p { color: rgba(253,242,248,.78); margin-bottom: 20px; line-height: 1.85; }
.section-cream .intro-text p { color: var(--plum2); }
.intro-text .client-link { color: var(--pink); font-weight: 500; }
.intro-text .client-link:hover { color: var(--pink2); text-decoration: underline; }

/* ---------- SERVICES CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--plum2);
  border: 1px solid rgba(236,72,153,.18);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--trans);
}
.service-card:hover {
  border-color: rgba(236,72,153,.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--pink2); }
.service-card p { font-size: .95rem; color: rgba(253,242,248,.68); line-height: 1.7; }

/* ---------- 2-COL IMAGE+TEXT ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
}
.two-col-img { overflow: hidden; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-text {
  padding: 60px 48px;
  background: var(--plum2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.two-col-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 18px; }
.two-col-text p { color: rgba(253,242,248,.75); margin-bottom: 16px; line-height: 1.8; }
.two-col-text .btn { margin-top: 12px; align-self: flex-start; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ---------- BANNER CSS BG ---------- */
.banner-bg {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-image: url('/images/personnages-2d.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.banner-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,15,31,.82);
}
.banner-bg-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
}
.banner-bg-content h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 20px; }
.banner-bg-content p { color: rgba(253,242,248,.8); font-size: 1.1rem; margin-bottom: 32px; line-height: 1.8; }

/* ---------- PORTFOLIO GRID ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--plum2);
  border: 1px solid rgba(236,72,153,.15);
  transition: var(--trans);
  aspect-ratio: 4/3;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans); }
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,15,31,.95));
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--trans);
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card-overlay h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 4px; }
.portfolio-card-overlay p { font-size: .85rem; color: var(--pink2); }

/* ---------- STATS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .85rem;
  color: rgba(253,242,248,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--pink);
  position: absolute;
  top: -20px; left: -20px;
  line-height: 1;
  opacity: .4;
}
.testimonial-author { color: var(--pink2); font-weight: 600; font-size: .95rem; }

/* ---------- BLOG GRID ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--plum2);
  border: 1px solid rgba(236,72,153,.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(236,72,153,.4); }
.blog-card-img { overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 28px; }
.blog-card-meta {
  font-size: .78rem;
  color: var(--pink);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--cream); line-height: 1.4; }
.blog-card-body p { font-size: .9rem; color: rgba(253,242,248,.65); line-height: 1.7; margin-bottom: 18px; }
.blog-read-more { font-size: .88rem; color: var(--pink); font-weight: 600; }
.blog-read-more:hover { color: var(--pink2); }

/* ---------- ARTICLE / BLOG POST ---------- */
.article-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,15,31,.4) 0%, rgba(26,15,31,.9) 100%);
}
.article-hero-text {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  text-align: center;
  padding: 0 24px;
}
.article-hero-text h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); color: var(--white); }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}
.article-body p { color: rgba(253,242,248,.8); line-height: 1.9; margin-bottom: 24px; }
.article-body h2 { font-size: 1.6rem; color: var(--pink2); margin: 40px 0 16px; }
.article-body h3 { font-size: 1.25rem; color: var(--cream); margin: 28px 0 12px; }
.article-body ul { margin: 0 0 24px 24px; list-style: disc; }
.article-body ul li { color: rgba(253,242,248,.78); margin-bottom: 8px; line-height: 1.7; }
.article-body .article-meta {
  font-size: .82rem;
  color: var(--pink);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}
.article-body-mid-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 36px 0;
}
.article-body-mid-img img { width: 100%; border-radius: var(--radius); }

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 20px; }
.contact-info p { color: rgba(253,242,248,.75); line-height: 1.8; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--plum2);
  border-radius: var(--radius);
  border: 1px solid rgba(236,72,153,.18);
}
.contact-detail-icon { font-size: 1.5rem; color: var(--pink); flex-shrink: 0; }
.contact-detail-text span { display: block; font-size: .78rem; color: var(--pink); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.contact-detail-text p { color: var(--cream); margin: 0; font-size: .95rem; }

.contact-form {
  background: var(--plum2);
  border: 1px solid rgba(236,72,153,.18);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--pink2);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(26,15,31,.6);
  border: 1px solid rgba(236,72,153,.25);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--cream);
  outline: none;
  transition: var(--trans);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(236,72,153,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--plum2); }

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: var(--plum2);
  border-bottom: 1px solid rgba(236,72,153,.18);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(253,242,248,.7); max-width: 560px; margin: 0 auto; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: 16px 0;
  font-size: .85rem;
  color: rgba(253,242,248,.5);
}
.breadcrumb a { color: var(--pink); }
.breadcrumb span { margin: 0 8px; }

/* ---------- SITEMAP ---------- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.sitemap-col h3 { font-size: 1rem; color: var(--pink); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.sitemap-col ul { display: flex; flex-direction: column; gap: 10px; }
.sitemap-col ul li a { color: rgba(253,242,248,.75); font-size: .95rem; }
.sitemap-col ul li a:hover { color: var(--pink); }

/* ---------- 404 ---------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}
.page-404 h1 { font-size: clamp(5rem, 15vw, 10rem); color: var(--pink); line-height: 1; margin-bottom: 0; }
.page-404 h2 { font-size: 1.8rem; margin-bottom: 20px; }
.page-404 p { color: rgba(253,242,248,.7); margin-bottom: 36px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #0f0914;
  border-top: 1px solid rgba(236,72,153,.18);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: .9rem; color: rgba(253,242,248,.55); line-height: 1.8; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(253,242,248,.6); font-size: .9rem; transition: var(--trans); }
.footer-col ul li a:hover { color: var(--pink); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(236,72,153,.12);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(253,242,248,.4); }
.footer-bottom a { color: rgba(253,242,248,.4); }
.footer-bottom a:hover { color: var(--pink); }

/* ---------- TAGS / BADGES ---------- */
.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(236,72,153,.15);
  color: var(--pink2);
  border: 1px solid rgba(236,72,153,.3);
  margin: 3px;
}
.tags-wrap { display: flex; flex-wrap: wrap; gap: 4px; margin: 16px 0; }

/* ---------- PROCESS STEPS ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: process;
}
.process-step { text-align: center; padding: 32px 20px; }
.process-step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--plum3));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(236,72,153,.3);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { font-size: .88rem; color: rgba(253,242,248,.65); line-height: 1.7; }

/* ---------- DIVIDER ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236,72,153,.35), transparent);
  margin: 0;
  border: none;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- ABOUT PAGE SPECIFICS ---------- */
.skills-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.skill-bar-wrap { margin-bottom: 8px; }
.skill-bar-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .88rem; font-weight: 500; }
.skill-bar-label span:last-child { color: var(--pink); }
.skill-bar { height: 6px; background: rgba(236,72,153,.15); border-radius: 10px; overflow: hidden; }
.skill-bar-fill { height: 100%; background: linear-gradient(90deg, var(--pink), var(--pink2)); border-radius: 10px; }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--pink), transparent); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before { content: ''; position: absolute; left: -37px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(236,72,153,.2); }
.timeline-date { font-size: .8rem; color: var(--pink); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-item p { font-size: .9rem; color: rgba(253,242,248,.68); line-height: 1.7; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .showreel-split { grid-template-columns: 1fr; }
  .showreel-text { padding: 40px 28px; }
  .showreel-video-wrap { height: 300px; min-height: 300px; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; position: fixed; top: 72px; left: 0; right: 0; background: rgba(26,15,31,.98); padding: 20px 24px 28px; gap: 4px; border-bottom: 1px solid rgba(236,72,153,.2); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-toggle { display: flex; }
  .section { padding: 70px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content { padding: 120px 20px 100px; }
  .contact-form { padding: 32px 24px; }
  .two-col-text { padding: 40px 28px; }
  .banner-bg { background-attachment: scroll; }
}
@media (max-width: 500px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
