
:root {
  --bg-body: #fafbfc;
  --bg-card: #ffffff;
  --bg-subtle: #f3f4f6;
  --bg-accent-soft: #eff6ff;
  
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-faint: #94a3b8;
  
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-glow: rgba(37, 99, 235, 0.12);
  
  --accent-emerald: #059669;
  --accent-emerald-bg: #ecfdf5;
  --accent-amber: #d97706;
  --accent-amber-bg: #fffbeb;
  
  --border-card: #e2e8f0;
  --border-card-hover: #cbd5e1;
  --border-focus: #93c5fd;
  
  --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 12px 24px -4px rgba(15, 23, 42, 0.07), 0 4px 8px -4px rgba(15, 23, 42, 0.03);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  background-image: radial-gradient(#e2e8f0 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.font-mono {
  font-family: var(--font-mono) !important;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-card);
  padding: 0.85rem 0;
  transition: all 0.2s ease;
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

.brand-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-accent-soft);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-focus);
}

.nav-link {
  font-family: var(--font-body);
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.85rem !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background-color: var(--bg-accent-soft);
}

.btn-nav-cv {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
}

section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alternate {
  background-color: #ffffff;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 0.85rem;
}

.section-tag i {
  color: var(--primary);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.6;
}

.hero-section {
  padding-top: 8rem;
  padding-bottom: 5.5rem;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 1.5rem;
}

.blink-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.25);
  animation: pulseGreen 2s infinite ease-out;
}

@keyframes pulseGreen {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-title {
  font-size: 3.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .highlight-dev {
  color: var(--primary);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  box-shadow: var(--shadow-subtle);
}

.hero-chip i {
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.btn-primary-craft {
  background: var(--primary);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: all 0.2s ease;
}

.btn-primary-craft:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.btn-outline-craft {
  background: #ffffff;
  color: var(--text-main) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-card);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-subtle);
  transition: all 0.2s ease;
}

.btn-outline-craft:hover {
  border-color: var(--border-card-hover);
  background: var(--bg-subtle);
  transform: translateY(-2px);
}

.profile-summary-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.profile-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 1.5rem;
}

.profile-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  border: 1px solid var(--border-focus);
}

.profile-card-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
}

.profile-card-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

.profile-facts-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.fact-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
}

.fact-content {
  flex-grow: 1;
}

.fact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fact-val {
  font-weight: 600;
  color: var(--text-main);
}

.profile-card-bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-card);
}

.btn-linkedin-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: #0a66c2;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.25);
  text-decoration: none;
}

.btn-linkedin-card:hover {
  background: #084e96;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.35);
  color: #ffffff !important;
}

.about-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-focus);
  box-shadow: var(--shadow-hover);
}

.about-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.about-card-icon.blue {
  background: var(--bg-accent-soft);
  color: var(--primary);
}

.about-card-icon.emerald {
  background: var(--accent-emerald-bg);
  color: var(--accent-emerald);
}

.about-card-icon.amber {
  background: var(--accent-amber-bg);
  color: var(--accent-amber);
}

.about-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.about-card-text {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.craft-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.craft-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--text-body);
  border: 1px solid var(--border-card);
}

.academic-dossier {
  max-width: 880px;
  margin: 0 auto;
}

.academic-entry {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
  position: relative;
}

.academic-entry:hover {
  border-color: var(--border-focus);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.academic-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.academic-school {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-main);
}

.academic-badge-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-accent-soft);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-focus);
}

.academic-degree-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.academic-desc {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.academic-list {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-body);
}

.academic-list li {
  margin-bottom: 0.4rem;
}

.exp-deep-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.exp-header-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px dashed var(--border-card);
  margin-bottom: 1.75rem;
}

.exp-role-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.exp-company-sub {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.exp-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.exp-feature-box {
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  transition: all 0.2s ease;
}

.exp-feature-box:hover {
  background: #ffffff;
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-subtle);
}

.exp-feature-box h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.exp-feature-box p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

.projects-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.75rem;
}

.filter-pill-btn {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill-btn:hover {
  color: var(--text-main);
  border-color: var(--border-card-hover);
}

.filter-pill-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 10px var(--primary-glow);
}

.project-item-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-item-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-focus);
  box-shadow: var(--shadow-hover);
}

.project-media-wrap {
  height: 140px;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-card);
  cursor: pointer;
}

.project-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.project-media-wrap .media-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}

.project-media-wrap .media-zoom-badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(4px);
  transition: transform 0.25s ease;
}

.project-media-wrap:hover .media-zoom-overlay {
  opacity: 1;
}

.project-media-wrap:hover .media-zoom-badge {
  transform: translateY(0);
}

.project-item-card:hover .project-media-wrap img {
  transform: scale(1.03);
}

.project-banner-styled {
  height: 130px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.project-banner-styled.banner-reseau {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  border-bottom: 3px solid #34d399;
}

.project-banner-styled.banner-ratp {
  background: linear-gradient(135deg, #090d16 0%, #1e293b 100%);
  border-bottom: 3px solid #00a299;
}

.project-banner-styled.banner-lumiplan {
  background: linear-gradient(135deg, #0055c8 0%, #002d72 100%);
  border-bottom: 3px solid #f59e0b;
}

.project-banner-styled.banner-sive {
  background: linear-gradient(135deg, #e2231a 0%, #8b0000 100%);
  border-bottom: 3px solid #ffffff;
}

.project-banner-styled.banner-code {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-bottom: 3px solid var(--primary);
}

.banner-screen-text {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
}

.banner-badge-corner {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-main);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.project-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-item-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.project-item-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.project-tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
}

.tech-chip-item {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: var(--bg-subtle);
  color: var(--text-body);
  border: 1px solid var(--border-card);
}

.project-links-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-card);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 600;
}
.spec-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: all 0.25s ease;
}

.spec-card:hover {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-hover);
}

.spec-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 1.25rem;
}

.spec-head-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.spec-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: all 0.15s ease;
}

.spec-pill:hover {
  background: #ffffff;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.cert-spec-box {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.cert-spec-box:hover {
  border-color: var(--border-focus);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cert-spec-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cert-spec-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.cert-score-tag {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--bg-accent-soft);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-focus);
}

.cert-spec-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.cert-verify-anchor {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-atelier {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.contact-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.contact-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.35rem;
  background: var(--bg-body);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  color: var(--text-main);
  box-shadow: var(--shadow-subtle);
  transition: all 0.2s ease;
}

.contact-link-pill:hover {
  background: #ffffff;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.site-footer {
  padding: 2.5rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-card);
  color: var(--text-muted);
  font-size: 0.88rem;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 767px) {
  section {
    padding: 3.75rem 0;
  }
  
  .hero-section {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .contact-links-grid {
    flex-direction: column;
  }
}
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(10, 15, 29, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-topbar {
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  z-index: 2110;
}

.lightbox-counter {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

.lightbox-viewport {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem 5rem;
  overflow: hidden;
}

.lightbox-image-wrap {
  max-width: 90vw;
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2110;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-nav-btn:disabled,
.lightbox-nav-btn.d-none {
  display: none !important;
}

.lightbox-bottombar {
  padding: 1rem 2rem 1.75rem;
  text-align: center;
  color: #ffffff;
  z-index: 2110;
}

.lightbox-caption-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #ffffff;
}

.lightbox-caption-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

.lightbox-thumbs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.lightbox-thumb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-thumb-dot.active {
  background: var(--primary);
  transform: scale(1.4);
}

@media (max-width: 767px) {
  .lightbox-viewport {
    padding: 1rem 1.25rem;
  }
  
  .lightbox-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
  
  .lightbox-prev {
    left: 0.5rem;
  }
  
  .lightbox-next {
    right: 0.5rem;
  }
  
  .lightbox-image-wrap img {
    max-height: 60vh;
  }
}

