/* ============================================
   ROOT / DESIGN TOKENS
   ============================================ */
:root {
  --rose:        #9B2335;
  --rose-light:  #C84B5E;
  --rose-pale:   #F5E6E8;
  --rose-soft:   #F0D5D9;
  --blush:       #ECC5CC;
  --cream:       #FDF8F8;
  --cream-2:     #FAF3F4;
  --warm-white:  #FEFCFC;
  --dark:        #1A1014;
  --dark-2:      #2D1E22;
  --text:        #3D2530;
  --text-muted:  #7A5A62;
  --text-light:  #A88A92;
  --border:      #EDD8DC;
  --shadow-sm:   0 2px 12px rgba(155,35,53,0.07);
  --shadow-md:   0 8px 32px rgba(155,35,53,0.12);
  --shadow-lg:   0 20px 60px rgba(155,35,53,0.18);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 100px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --navbar-h:    72px;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: center;
}

.center { text-align: center; }

.accent { color: var(--rose); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 4px 20px rgba(155,35,53,0.35);
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155,35,53,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}

.btn-outline:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(253,248,248,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

/* Logo */
.logo { display: flex; align-items: center; }

.logo-initials {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  color: var(--rose);
  line-height: 1;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   CARTOON FLOWER MOTIFS (SUBTLE, STATIC, NON-OVERLAPPING)
   ============================================ */
.cartoon-flower {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
  filter: none;
  animation: none;
  transition: opacity 0.3s ease;
}

.flower-hero-1 { top: 105px; right: 2%; width: 90px; height: 90px; }
.flower-hero-2 { bottom: 20px; right: 2%; width: 100px; height: 100px; }
.flower-hero-3 { top: 110px; left: 2%; width: 75px; height: 75px; }

.flower-about-left  { top: 30px; left: 1%; width: 85px; height: 85px; opacity: 0.18; }
.flower-about-right { bottom: 20px; right: 1%; width: 80px; height: 80px; opacity: 0.18; }

.flower-projects-top { top: 25px; right: 2%; width: 100px; height: 100px; opacity: 0.20; }
.flower-projects-bot { bottom: 20px; left: 2%; width: 90px; height: 90px; opacity: 0.20; }

.flower-paid-top { top: 30px; left: 2%; width: 100px; height: 100px; opacity: 0.20; }
.flower-paid-bot { bottom: 20px; right: 2%; width: 85px; height: 85px; opacity: 0.20; }

.flower-exp-right { top: 40px; right: 2%; width: 90px; height: 90px; opacity: 0.18; }

.flower-skills-left { top: 30px; left: 2%; width: 95px; height: 95px; opacity: 0.20; }
.flower-skills-bot  { bottom: 20px; right: 2%; width: 85px; height: 85px; opacity: 0.20; }

.flower-brands-left  { top: 30px; left: 2%; width: 85px; height: 85px; opacity: 0.18; }
.flower-brands-right { bottom: 20px; right: 2%; width: 90px; height: 90px; opacity: 0.18; }

.flower-edu-right  { top: 35px; right: 2%; width: 90px; height: 90px; opacity: 0.18; }

.flower-certs-left { top: 35px; left: 2%; width: 85px; height: 85px; opacity: 0.18; }

.flower-contact-top { top: 30px; right: 2%; width: 100px; height: 100px; opacity: 0.20; }
.flower-contact-bot { bottom: 20px; left: 2%; width: 85px; height: 85px; opacity: 0.20; }

@media (max-width: 768px) {
  .cartoon-flower {
    opacity: 0.15;
    width: 60px !important;
    height: 60px !important;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--navbar-h);
  background: linear-gradient(135deg, #FFF9FA 0%, #F5E8EB 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "content image"
    "stats   stats";
  align-items: stretch;
  gap: 0;
  overflow: visible;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  grid-area: content;
  padding: 60px 48px 40px 64px;
  z-index: 2;
  align-self: start;
}

.hero-greeting {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Social Icons */
.hero-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon svg { width: 16px; height: 16px; }

.social-icon:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--rose-pale);
  transform: translateY(-2px);
}

/* Hero Image */
.hero-image-wrap {
  grid-area: image;
  position: relative;
  align-self: stretch;
  height: 100%;
  min-height: 580px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 448px;
  height: calc(100% - 20px);
  background: linear-gradient(160deg, var(--rose-soft) 0%, var(--blush) 50%, var(--rose-pale) 100%);
  border-radius: 224px 224px 0 0;
  opacity: 0.5;
}

.hero-photo {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 440px;
  height: calc(100% - 24px);
  object-fit: cover;
  object-position: center 38%;
  border-radius: 220px 220px 0 0;
  box-shadow: 0 24px 60px rgba(155,35,53,0.18), 0 4px 16px rgba(0,0,0,0.08);
}

/* Hero Stats */
.hero-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.stat-card {
  background: var(--warm-white);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
}

.stat-card:hover {
  background: var(--rose-pale);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--rose);
  display: inline;
}

.stat-icon {
  font-size: 1.8rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

.stat-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-text .section-title {
  margin-bottom: 24px;
}

.about-para {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}

.highlight-item {
  padding: 20px 16px;
  background: #FAF3F4;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.highlight-item:hover {
  border-color: var(--rose);
  background: var(--rose-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.highlight-icon { font-size: 1.6rem; margin-bottom: 8px; }

.highlight-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.highlight-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* About Image */
.about-image-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--cream-2);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}

.about-badge span { font-size: 1.4rem; }

/* ============================================
   PROJECTS
   ============================================ */
.projects {
  padding: 120px 0;
  background: #FBF0F2;
  position: relative;
  overflow: hidden;
}

/* Total Videos Pill Badge */
.total-videos-pill {
  display: flex;
  justify-content: center;
  margin: 12px 0 36px;
}

.total-videos-pill .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm-white);
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.total-videos-pill .pill-badge strong {
  color: var(--rose);
  font-weight: 700;
}

.total-videos-pill .pill-badge:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  background: transparent;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.filter-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  box-shadow: 0 4px 16px rgba(155,35,53,0.3);
}

/* Projects Grid */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.projects-grid .project-card {
  width: calc(20% - 13px); /* 5 per row: (100% - 4*16px) / 5 */
  flex-shrink: 0;
}



/* Paid Projects Section styling */
.projects-paid {
  background: #F9F4EE;
  border-top: 1px solid var(--border);
}

.projects-paid .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--rose);
  border-radius: 2px;
  margin: 10px auto 0;
}

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.project-card.hidden {
  display: none;
}

/* Project Thumbnail */
.project-thumb {
  position: relative;
  aspect-ratio: 9/16;
  background: #1A1A1A;
  overflow: hidden;
  cursor: pointer;
}

.project-thumb video,
.project-thumb iframe,
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: background 0.3s ease;
}

.project-card:hover .thumb-overlay {
  background: rgba(0, 0, 0, 0.38);
}

.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.9);
  backdrop-filter: blur(6px);
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.project-card:hover .play-btn {
  transform: scale(1.12);
  background: #E63946;
}

.play-btn svg {
  width: 22px; height: 22px;
  margin-left: 3px;
}

.play-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: scale(1.1);
}

.project-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.project-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.project-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.project-cat {
  font-size: 0.72rem;
  color: var(--rose);
  font-weight: 500;
  background: var(--rose-pale);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(0,0,0,0.08);
  width: 100%;
}

.project-tag {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.72rem;
  background: var(--cream-2);
  padding: 2px 7px;
  border-radius: 4px;
}

.project-gmv {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: auto;
  font-weight: 500;
}

.project-gmv strong {
  color: var(--rose);
  font-weight: 700;
}

/* Visit Project badge – teal accent */
.cat-visit {
  color: #0D7A6B;
  background: #E0F5F2;
}

/* Brand badge – purple accent */
.cat-brand {
  color: #5B3DB8;
  background: #EDE9FB;
}

/* ============================================
   SKILLS
   ============================================ */
.skills {
  padding: 100px 0;
  background: #FAF0F3;
}

.skills .section-title { margin-bottom: 8px; }
.skills .section-sub   { margin-bottom: 48px; }

.skills-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.skills-block {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.skills-block-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.skills-block-title span {
  font-size: 1.3rem;
}

/* Hard Skills Grid */
.hard-skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hard-skill-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.hard-skill-card:hover {
  border-color: var(--rose);
  background: var(--rose-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.hs-icon-box {
  font-size: 1.6rem;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hs-capcut { background: #111; }
.hs-tiktok { background: #F0F2F5; }
.hs-canva { background: #E6F8F9; }
.hs-msoffice { background: #FFF5F2; }
.hs-data { background: #EBF5FB; }
.hs-socialmarketing { background: #FDE8F0; }
.hs-content { background: #FADBD8; }
.hs-zahir { background: #E8F8F5; }

.hs-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.hs-info p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Two Column Layout for Soft Skills & Languages */
.skills-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Soft Skills Pills */
.soft-skills-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.soft-pill {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.soft-pill:hover {
  border-color: var(--rose);
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}

/* Languages */
.lang-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lang-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.lang-card:hover {
  border-color: var(--rose);
  background: var(--rose-pale);
}

.lang-flag {
  font-size: 1.8rem;
  line-height: 1;
}

.lang-info h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.lang-info p {
  font-size: 0.8rem;
  color: var(--rose);
  font-weight: 500;
}e);
  transform: translateX(4px);
}

.other-skill-icon { font-size: 1.2rem; }

/* ============================================
   BRAND COLLABORATION
   ============================================ */
.brands {
  padding: 100px 0;
  background: #FFFFFF;
}

.brands .section-title { margin-bottom: 8px; }
.brands .section-sub   { margin-bottom: 56px; }

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Base bubble */
.brand-bubble {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  padding: 0;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--warm-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.brand-bubble:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 20px 48px rgba(26,16,20,0.20);
  z-index: 2;
}

.bb-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.bb-sub {
  font-size: 0.62rem;
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* ── Individual Brand Colors ── */

/* Wardāh — teal */
.bb-wardah {
  background: #2BBFBF;
  box-shadow: 0 8px 24px rgba(43,191,191,0.30);
}
.bb-wardah .bb-name { color: #fff; font-size: 1.1rem; }

/* ÖMG — sleek black */
.bb-omg {
  background: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.30);
}
.bb-omg .bb-name { color: #fff; font-size: 1.3rem; letter-spacing: 0.04em; }

/* Cetaphil — clean white + blue accent */
.bb-cetaphil {
  background: #fff;
  border: 2px solid #E8EFF8;
  box-shadow: 0 8px 24px rgba(0,80,180,0.10);
}
.bb-cetaphil .bb-name { color: #0055A5; font-size: 0.95rem; }

/* becoming — soft white elegant */
.bb-becoming {
  background: #fff;
  border: 2px solid #F0EBE8;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.bb-becoming .bb-name { color: #3D2530; font-size: 1rem; font-style: italic; font-weight: 400; letter-spacing: 0.06em; }

/* Reveline — hot pink */
.bb-reveline {
  background: linear-gradient(135deg, #FF6EB4 0%, #FF3A8C 100%);
  box-shadow: 0 8px 24px rgba(255,58,140,0.30);
}
.bb-reveline .bb-name { color: #fff; font-style: italic; font-size: 1rem; }
.bb-reveline .bb-sub  { color: rgba(255,255,255,0.85); }

/* Only You Beauté — ivory + gold border */
.bb-onlyyou {
  background: #FFFFF8;
  border: 3px solid #C9A84C;
  box-shadow: 0 8px 24px rgba(201,168,76,0.20);
}
.bb-onlyyou .bb-name { color: #3D2530; font-size: 0.82rem; letter-spacing: 0.12em; }
.bb-onlyyou .bb-sub  { color: #C9A84C; letter-spacing: 0.15em; font-size: 0.6rem; }

/* Satellite & Glow — soft blush pink */
.bb-satellite {
  background: #FFF0F5;
  border: 2px solid #F8C4D4;
  box-shadow: 0 8px 24px rgba(248,100,148,0.15);
}
.bb-satellite .bb-name { color: #C84B7A; font-size: 0.88rem; }
.bb-satellite .bb-name em { font-style: italic; font-weight: 400; }

/* FARGER — white + purple border */
.bb-farger {
  background: #fff;
  border: 2.5px solid #7B5EA7;
  box-shadow: 0 8px 24px rgba(123,94,167,0.15);
}
.bb-farger .bb-name { color: #7B5EA7; font-size: 1rem; letter-spacing: 0.08em; }

/* Myminols — creamy white, script feel */
.bb-myminols {
  background: #FDF9F5;
  border: 2px solid #EAD8C0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.bb-myminols .bb-name { color: #3D2530; font-size: 1rem; font-style: italic; font-weight: 400; }

/* @GLAMAZING — sky blue gradient */
.bb-glamazing {
  background: linear-gradient(135deg, #72C6EF 0%, #A0D9F0 100%);
  box-shadow: 0 8px 24px rgba(114,198,239,0.30);
}
.bb-glamazing .bb-name { color: #fff; font-size: 0.78rem; letter-spacing: 0.06em; }

/* KULA — teal to golden gradient */
.bb-kula {
  background: linear-gradient(135deg, #2BBFBF 0%, #4DA8A8 50%, #C8B560 100%);
  box-shadow: 0 8px 24px rgba(43,191,191,0.25);
}
.bb-kula .bb-name { color: #fff; font-size: 1.1rem; letter-spacing: 0.12em; }

/* O.TWO.O — soft peach pink */
.bb-otwoo {
  background: linear-gradient(135deg, #FDDDE6 0%, #FFC5D5 100%);
  border: 2px solid #F5B8C8;
  box-shadow: 0 8px 24px rgba(255,150,175,0.20);
}
.bb-otwoo .bb-name { color: #9B2335; font-size: 0.82rem; letter-spacing: 0.06em; }
.bb-otwoo .bb-sub  { color: #C84B5E; letter-spacing: 0.08em; font-size: 0.58rem; }

/* HANASUI — coral/salmon */
.bb-hanasui {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF4E6A 100%);
  box-shadow: 0 8px 24px rgba(255,78,106,0.30);
}
.bb-hanasui .bb-name { color: #fff; font-size: 1rem; letter-spacing: 0.1em; }

/* ============================================
   EXPERIENCE
   ============================================ */

.experience {
  padding: 120px 0;
  background: #FFFFFF;
}

.experience .section-title { margin-bottom: 8px; }
.experience .section-sub   { margin-bottom: 56px; }

/* Single-column vertical timeline */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 60px;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--rose-light), var(--blush), transparent);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  position: relative;
  margin-bottom: 36px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-dot.work {
  background: var(--rose-pale);
  border-color: var(--rose);
}

.timeline-dot.work::after {
  content: '💼';
  font-size: 0.9rem;
}

.timeline-dot.project {
  background: #E8F4FD;
  border-color: #2980B9;
}

.timeline-dot.project::after {
  content: '🌟';
  font-size: 0.9rem;
}

.timeline-dot.edu {
  background: #F0F0FF;
  border-color: #6B5BDB;
}

.timeline-dot.edu::after {
  content: '🎓';
  font-size: 0.9rem;
}

.timeline-content {
  flex: 1;
  background: #FAF3F4;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blush);
  transform: translateX(4px);
}

.timeline-period {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 6px;
}

.timeline-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tl-type {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  background: var(--rose-pale);
  color: var(--rose);
  letter-spacing: 0.03em;
}

.timeline-place {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 6px;
}

.timeline-bullets {
  margin: 8px 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.timeline-bullets li {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  list-style: disc;
}

/* WYA Card — two column layout: text left, photos right */
.wya-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 24px;
}

.wya-text-col {
  flex: 1;
  min-width: 0;
}

.wya-text-col .timeline-bullets {
  margin-top: 10px;
}

.wya-gallery {
  flex-shrink: 0;
  width: 320px;
  height: 230px;
  position: relative;
  align-self: center;
}

/* Each photo floats with a subtle rotation and drop shadow */
.wya-img {
  position: absolute;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 8px 26px rgba(26,16,20,0.20), 0 2px 8px rgba(26,16,20,0.10);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
  border: 3px solid #fff;
}

.wya-img:hover {
  transform: scale(1.09) rotate(0deg) !important;
  box-shadow: 0 20px 48px rgba(26,16,20,0.32);
  z-index: 10 !important;
}

/* Row 1: 3 photos across the top */
.wya-img-1 {
  width: 125px;
  height: 125px;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}

.wya-img-2 {
  width: 130px;
  height: 130px;
  top: 8px;
  left: 95px;
  transform: rotate(2deg);
  z-index: 3;
}

.wya-img-3 {
  width: 122px;
  height: 122px;
  top: 0;
  left: 192px;
  transform: rotate(-4deg);
  z-index: 2;
}

/* Row 2: 2 photos centered at the bottom */
.wya-img-4 {
  width: 125px;
  height: 125px;
  top: 100px;
  left: 44px;
  transform: rotate(3deg);
  z-index: 4;
}

.wya-img-5 {
  width: 122px;
  height: 122px;
  top: 100px;
  left: 150px;
  transform: rotate(-2deg);
  z-index: 4;
}

/* 2-photo floating gallery for Looke & RUBI */
.exp-gallery-2 {
  flex-shrink: 0;
  width: 250px;
  height: 180px;
  position: relative;
  align-self: center;
}

.exp-gallery-2 .exp-img-1 {
  width: 140px;
  height: 140px;
  top: 10px;
  left: 0;
  transform: rotate(-4deg);
  z-index: 2;
}

.exp-gallery-2 .exp-img-2 {
  width: 145px;
  height: 145px;
  top: 20px;
  left: 95px;
  transform: rotate(4deg);
  z-index: 3;
}

/* 3-photo floating gallery for Garda Oto */
.exp-gallery-3 {
  flex-shrink: 0;
  width: 270px;
  height: 190px;
  position: relative;
  align-self: center;
}

.exp-gallery-3 .g-img-1 {
  width: 125px;
  height: 125px;
  top: 10px;
  left: 0;
  transform: rotate(-4deg);
  z-index: 2;
}

.exp-gallery-3 .g-img-2 {
  width: 130px;
  height: 130px;
  top: 0px;
  left: 70px;
  transform: rotate(3deg);
  z-index: 3;
}

.exp-gallery-3 .g-img-3 {
  width: 122px;
  height: 122px;
  top: 55px;
  left: 140px;
  transform: rotate(-3deg);
  z-index: 4;
}



/* ============================================
   EDUCATION
   ============================================ */
.education {
  padding: 100px 0;
  background: #FAF3ED;
}

.education .section-title { margin-bottom: 8px; }
.education .section-sub   { margin-bottom: 48px; }

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

.edu-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.edu-card:hover {
  border-color: var(--rose);
  background: var(--rose-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.edu-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin: 0 auto;
}

.edu-period {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  text-align: center;
  margin-bottom: 4px;
}

.edu-degree {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.edu-school {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.edu-detail {
  font-size: 0.82rem;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 10px;
}

.edu-highlights {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.edu-highlights li {
  font-size: 0.8rem;
  color: var(--text-muted);
  list-style: disc;
  line-height: 1.5;
}

/* ============================================
   CERTIFICATES
   ============================================ */
.certificates {
  padding: 100px 0;
  background: #FFFFFF;
}

.certificates .section-title { margin-bottom: 8px; }
.certificates .section-sub   { margin-bottom: 48px; }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cert-card {
  background: #FAF3F4;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}

.cert-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
}

.cert-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition);
}

.cert-card:hover .cert-thumb img {
  transform: scale(1.04);
}

.cert-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.cert-issuer {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.cert-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.cert-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  transition: var(--transition);
}

.cert-link-btn:hover {
  color: var(--dark);
  transform: translateX(3px);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: #F8ECEF;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-info-item svg {
  width: 20px; height: 20px;
  color: var(--rose);
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(155,35,53,0.08);
}

.form-success {
  display: none;
  text-align: center;
  font-size: 0.88rem;
  color: #2D8A4E;
  margin-top: 12px;
  padding: 12px;
  background: #EAFAF1;
  border-radius: var(--radius-sm);
}

.form-success.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer .logo-initials { color: var(--blush); }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-social a svg { width: 15px; height: 15px; }

.footer-social a:hover {
  border-color: var(--rose-light);
  color: var(--rose-light);
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-inner {
  position: relative;
  width: 90vw;
  max-width: 900px;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-inner {
  transform: scale(1);
}

.modal-inner video {
  width: 100%;
  max-height: 80vh;
  display: block;
}

.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover { color: var(--rose-light); transform: rotate(90deg); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay variants */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "content image"
      "stats   stats";
  }
  .hero-content { padding: 40px 24px 32px 40px; }
  .about-grid   { gap: 48px; }
  .contact-grid { gap: 48px; }
  .hard-skills-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .navbar { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--navbar-h));
    overflow-y: auto;
  }
  .nav-links.open  { display: flex; }
  .nav-link        { padding: 8px 16px; width: 100%; font-size: 0.78rem; text-align: center; }
  .nav-link::after { display: none !important; }
  .nav-cta         { display: none; }
  .hamburger       { display: flex; }

  /* ── Hero ── */
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content"
      "stats";
    min-height: auto;
    padding-top: var(--navbar-h);
  }
  .hero::before     { display: none; }
  .hero-image-wrap  { height: 314px; min-height: unset; order: -1; padding-top: 24px; padding-bottom: 0; overflow: hidden; align-items: flex-start; justify-content: center; }
  .hero-blob        { display: none; }
  .hero-photo       { width: 240px; height: 290px; border-radius: 120px 120px 0 0; object-fit: cover; object-position: center 75%; box-shadow: 0 16px 40px rgba(155,35,53,0.18); }
  .hero-content     { padding: 28px 24px 24px; text-align: center; }
  .hero-greeting    { font-size: 0.85rem; }
  .hero-name        { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-title       { font-size: 1rem; }
  .hero-desc        { font-size: 0.9rem; margin: 0 auto 28px; max-width: 480px; }
  .hero-actions     { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-social      { justify-content: center; }
  .hero-stats       { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat-card:last-child {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
  .stat-card        { padding: 14px 12px; gap: 2px; }
  .stat-number      { font-size: 1.4rem; }
  .stat-plus        { font-size: 1.1rem; }
  .stat-label       { font-size: 0.68rem; margin-top: 2px; }

  /* ── About ── */
  .about            { padding: 72px 0; }
  .about-grid       { grid-template-columns: 1fr; gap: 36px; }
  .about-image-wrap { order: -1; max-width: 320px; margin: 0 auto; }
  .about-highlights { grid-template-columns: 1fr; gap: 12px; }
  .about-badge      { left: 16px; font-size: 0.75rem; padding: 8px 14px; }
  .about-text       { text-align: center; }
  .about-para       { font-size: 0.9rem; }

  /* ── Projects ── */
  .projects         { padding: 72px 0; }
  .total-videos-pill { margin: 8px 0 24px; }
  .total-videos-pill .pill-badge { padding: 6px 14px; font-size: 0.76rem; gap: 6px; }
  .projects-grid    { gap: 12px; }
  .projects-grid .project-card { width: calc(50% - 6px); }
  .project-thumb    { aspect-ratio: 3/4; }
  .project-info     { padding: 10px 12px; gap: 6px; }
  .project-name     { font-size: 0.78rem; }
  .project-cat      { font-size: 0.65rem; padding: 2px 7px; }
  .project-meta     { padding-top: 4px; }
  .project-tag      { font-size: 0.64rem; padding: 1px 5px; }
  .project-gmv      { font-size: 0.68rem; }
  .filter-bar       { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .filter-btn       { padding: 8px 16px; font-size: 0.8rem; }

  /* ── Experience ── */
  .experience           { padding: 60px 0; }
  .timeline-list        { padding-left: 40px; }
  .timeline-list::before { left: 16px; }
  .timeline-item        { margin-bottom: 20px; }
  .timeline-dot         { width: 28px; height: 28px; left: -39px; top: 50%; transform: translateY(-50%); font-size: 0.72rem; }
  .timeline-content     { padding: 12px 14px; }
  .timeline-period      { font-size: 0.62rem; margin-bottom: 4px; letter-spacing: 0.06em; }
  .timeline-role        { font-size: 0.82rem; gap: 6px; margin-bottom: 2px; }
  .tl-type              { font-size: 0.6rem; padding: 2px 8px; }
  .timeline-place       { font-size: 0.75rem; margin-bottom: 6px; }
  .timeline-bullets     { gap: 3px; margin-top: 5px; }
  .timeline-bullets li  { font-size: 0.72rem; line-height: 1.45; }

  /* WYA gallery — stack below text, centered */
  .wya-card         { flex-direction: column; gap: 16px; padding: 14px 16px; }
  .wya-gallery      { width: 290px; height: 185px; align-self: center; margin: 0 auto; }
  .wya-img-1        { width: 115px; height: 115px; top: 25px; left: 0; }
  .wya-img-2        { width: 105px; height: 105px; top: 5px; left: 85px; }
  .wya-img-3        { width: 98px; height: 98px; top: 5px; left: 165px; }
  .wya-img-4        { width: 105px; height: 105px; top: 80px; left: 45px; }
  .wya-img-5        { width: 98px; height: 98px; top: 80px; left: 140px; }
  .exp-gallery-2      { width: 230px; height: 155px; align-self: center; margin: 0 auto; }
  .exp-gallery-2 .exp-img-1 { width: 120px; height: 120px; top: 10px; left: 0; }
  .exp-gallery-2 .exp-img-2 { width: 125px; height: 125px; top: 18px; left: 85px; }
  .exp-gallery-3      { width: 240px; height: 160px; align-self: center; margin: 0 auto; }
  .exp-gallery-3 .g-img-1 { width: 110px; height: 110px; top: 10px; left: 0; }
  .exp-gallery-3 .g-img-2 { width: 115px; height: 115px; top: 0px; left: 60px; }
  .exp-gallery-3 .g-img-3 { width: 105px; height: 105px; top: 45px; left: 125px; }

  /* ── Education ── */
  .education        { padding: 72px 0; }
  .edu-grid         { grid-template-columns: 1fr; gap: 16px; }

  /* ── Skills ── */
  .skills           { padding: 60px 0; }
  .skills-wrapper   { gap: 20px; }
  .skills-two-col   { grid-template-columns: 1fr; gap: 16px; }
  .skills-block     { padding: 20px 16px; border-radius: var(--radius-md); }
  .skills-block-title { font-size: 0.95rem; margin-bottom: 16px; }
  .hard-skills-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hard-skill-card  { padding: 12px 14px; gap: 10px; }
  .hs-icon-box      { width: 38px; height: 38px; }

  .soft-skills-pills { gap: 6px; }
  .soft-pill        { font-size: 0.72rem; padding: 5px 12px; font-weight: 500; }

  .lang-cards       { gap: 10px; }
  .lang-card        { padding: 10px 14px; gap: 10px; border-radius: var(--radius-sm); }
  .lang-flag        { font-size: 1.3rem; }
  .lang-info h4     { font-size: 0.8rem; }
  .lang-info p      { font-size: 0.7rem; }

  /* ── Brands ── */
  .brands           { padding: 60px 0; }
  .brands-grid      { gap: 12px; max-width: 100%; }
  .brand-bubble     { width: 85px; height: 85px; }

  /* ── Certificates ── */
  .certificates     { padding: 72px 0; }
  .certs-grid       { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cert-card        { flex-direction: column; }
  .cert-thumb       { width: 100%; height: 160px; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .cert-info        { padding: 14px 16px; }
  .cert-title       { font-size: 0.85rem; }

  /* ── Contact ── */
  .contact          { padding: 48px 0; }
  .contact-grid     { grid-template-columns: 1fr; gap: 24px; }
  .contact-heading  { font-size: 1.5rem; margin-bottom: 10px; text-align: left; }
  .contact-sub      { font-size: 0.82rem; margin-bottom: 20px; text-align: left; line-height: 1.5; }
  .contact-info     { gap: 10px; margin-bottom: 20px; align-items: flex-start; }
  .contact-info-item { font-size: 0.78rem; gap: 10px; }
  .contact-info-item svg { width: 16px; height: 16px; }
  .contact-form     { padding: 20px 16px; border-radius: var(--radius-md); }
  .form-row         { grid-template-columns: 1fr; gap: 10px; }
  .form-group       { margin-bottom: 12px; gap: 4px; }
  .form-group label { font-size: 0.72rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 9px 12px; font-size: 0.78rem; border-radius: 6px; }
  .contact-form .btn { padding: 10px 18px; font-size: 0.8rem; }

  /* ── Footer ── */
  .footer           { padding: 24px 0; }
  .footer-inner     { flex-direction: column; gap: 12px; text-align: center; }
  .footer-copy      { font-size: 0.74rem; }
  .footer-social    { justify-content: center; gap: 12px; }
}

/* ============================================
   RESPONSIVE — SMALL PHONE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  :root { --navbar-h: 64px; }

  .container        { padding: 0 16px; }

  /* ── Section titles ── */
  .section-title    { font-size: 1.75rem; }
  .section-sub      { font-size: 0.85rem; margin-bottom: 28px; }

  /* ── Hero ── */
  .hero-image-wrap  { height: 260px; min-height: 260px; padding-top: 0; }
  .hero-blob        { display: none; }
  .hero-photo       { width: 220px; height: 250px; border-radius: 120px 120px 0 0; object-fit: cover; object-position: center 75%; }
  .hero-name        { font-size: 1.65rem; }
  .hero-stats       { grid-template-columns: 1fr 1fr; }
  .stat-card        { padding: 12px 8px; }
  .stat-number      { font-size: 1.25rem; }
  .stat-plus        { font-size: 1rem; }
  .stat-label       { font-size: 0.64rem; }
  .btn              { padding: 11px 20px; font-size: 0.85rem; }

  /* ── Projects ── */
  .total-videos-pill { margin: 6px 0 20px; }
  .total-videos-pill .pill-badge { padding: 5px 12px; font-size: 0.72rem; gap: 5px; border-width: 1px; }
  .projects-grid    { gap: 10px; }
  .projects-grid .project-card { width: calc(50% - 5px); }
  .project-info     { padding: 8px 10px; gap: 4px; }
  .project-name     { font-size: 0.72rem; }
  .project-cat      { font-size: 0.6rem; padding: 2px 6px; }
  .project-meta     { padding-top: 4px; flex-wrap: wrap; }
  .project-tag      { font-size: 0.6rem; padding: 1px 4px; }
  .project-gmv      { font-size: 0.64rem; }
  .play-btn         { width: 36px; height: 36px; }
  .play-btn svg     { width: 16px; height: 16px; }
  .project-duration { font-size: 0.62rem; padding: 2px 6px; bottom: 6px; right: 6px; }

  /* ── Experience timeline ── */
  .timeline-list    { padding-left: 36px; }
  .timeline-list::before { left: 14px; }
  .timeline-item    { margin-bottom: 16px; }
  .timeline-dot     { width: 24px; height: 24px; left: -34px; top: 50%; transform: translateY(-50%); font-size: 0.65rem; }
  .timeline-content { padding: 10px 12px; }
  .timeline-period  { font-size: 0.58rem; margin-bottom: 3px; }
  .timeline-role    { font-size: 0.76rem; flex-direction: column; align-items: flex-start; gap: 3px; }
  .tl-type          { font-size: 0.56rem; }
  .timeline-place   { font-size: 0.68rem; margin-bottom: 4px; }
  .timeline-bullets li { font-size: 0.66rem; line-height: 1.4; }
  .timeline-item    { padding-bottom: 16px; }

  /* WYA gallery — compact for small phones */
  .wya-gallery      { width: 270px; height: 170px; max-width: 100%; }
  .wya-img-1        { width: 105px; height: 105px; top: 20px; left: 0; }
  .wya-img-2        { width: 95px; height: 95px; top: 4px; left: 78px; }
  .wya-img-3        { width: 90px; height: 90px; top: 4px; left: 152px; }
  .wya-img-4        { width: 95px; height: 95px; top: 72px; left: 30px; }
  .wya-img-5        { width: 90px; height: 90px; top: 72px; left: 110px; }
  .exp-gallery-2      { width: 210px; height: 140px; max-width: 100%; }
  .exp-gallery-2 .exp-img-1 { width: 110px; height: 110px; top: 8px; left: 0; }
  .exp-gallery-2 .exp-img-2 { width: 115px; height: 115px; top: 14px; left: 78px; }
  .exp-gallery-3      { width: 220px; height: 145px; max-width: 100%; }
  .exp-gallery-3 .g-img-1 { width: 95px; height: 95px; top: 10px; left: 0; }
  .exp-gallery-3 .g-img-2 { width: 100px; height: 100px; top: 0px; left: 55px; }
  .exp-gallery-3 .g-img-3 { width: 90px; height: 90px; top: 40px; left: 115px; }

  /* ── Skills ── */
  .hard-skills-grid { grid-template-columns: 1fr; gap: 10px; }
  .skills-block     { padding: 16px 14px; }
  .skills-block-title { font-size: 0.9rem; margin-bottom: 12px; }
  .soft-skills-pills { gap: 5px; }
  .soft-pill        { font-size: 0.68rem; padding: 4px 10px; }
  .lang-card        { padding: 8px 12px; gap: 8px; }
  .lang-flag        { font-size: 1.2rem; }
  .lang-info h4     { font-size: 0.76rem; }
  .lang-info p      { font-size: 0.65rem; }

  /* ── Brands ── */
  .brands-grid      { gap: 8px; }
  .brand-bubble     { width: 75px; height: 75px; }

  /* ── Education ── */
  .edu-card         { flex-direction: column; gap: 12px; padding: 20px 16px; }
  .edu-icon         { font-size: 1.8rem; }

  /* ── Certificates ── */
  .certs-grid       { grid-template-columns: 1fr; }
  .cert-thumb       { height: 180px; }

  /* ── Contact ── */
  .contact          { padding: 36px 0; }
  .contact-heading  { font-size: 1.3rem; }
  .contact-sub      { font-size: 0.76rem; margin-bottom: 16px; }
  .contact-info-item { font-size: 0.74rem; }
  .contact-form     { padding: 16px 12px; }
  .form-group label { font-size: 0.68rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 8px 10px; font-size: 0.74rem; }
  .contact-form .btn { padding: 9px 14px; font-size: 0.76rem; }
  .footer-copy      { font-size: 0.7rem; }

  /* ── About ── */
  .about-image-wrap { max-width: 260px; }
  .highlight-item   { flex-direction: column; text-align: center; align-items: center; }
}

/* ============================================
   RESPONSIVE — EXTRA SMALL (≤ 360px)
   ============================================ */
@media (max-width: 360px) {
  .hero-name        { font-size: 1.45rem; }
  .hero-title       { font-size: 0.9rem; }
  .hero-image-wrap  { height: 220px; min-height: 220px; }
  .hero-blob        { height: 200px; }
  .hero-photo       { height: 200px; width: auto; max-width: 85%; }
  .brand-bubble     { width: 90px; height: 90px; }
  .bb-name          { font-size: 0.7rem; }
  .wya-gallery      { height: 138px; }
  .wya-img-1        { width: 82px; height: 82px; }
  .wya-img-2        { width: 76px; height: 76px; left: 58px; }
  .wya-img-3        { width: 72px; height: 72px; left: 118px; }
  .wya-img-4        { width: 76px; height: 76px; top: 54px; left: 26px; }
  .wya-img-5        { width: 72px; height: 72px; top: 54px; left: 100px; }
  .projects-grid    { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .project-info     { padding: 6px 8px; gap: 3px; }
  .project-name     { font-size: 0.68rem; }
  .project-cat      { font-size: 0.58rem; }
  .project-tag      { font-size: 0.56rem; }
  .project-gmv      { font-size: 0.6rem; }
  .certs-grid       { grid-template-columns: 1fr; }
}

