/* ════════════════════════════════════════════════
   WARM PALETTE — Hassen M'hammedi Bouzina
   Soft warm tones for a welcoming look
   ════════════════════════════════════════════════ */

:root {
  /* Backgrounds */
  --bg:        #faf6f0;
  --bg-2:      #f3ece2;
  --bg-card:   #ffffff;

  /* Surfaces */
  --white:     #ffffff;

  /* Accents */
  --olive:     #b5943a;
  --olive-dk:  #9a7d2e;
  --olive-bg:  rgba(181,148,58,0.1);
  --olive-bdr: rgba(181,148,58,0.28);
  --orange:    #d97706;

  /* Text */
  --t-1:       #1c1410;
  --t-2:       rgba(28,20,16,0.6);
  --t-3:       rgba(28,20,16,0.38);
  --t-dark:    #111111;
  --t-gray:    #7c6c58;

  /* Borders */
  --bdr:       rgba(28,20,16,0.09);
  --bdr-light: #e5e7eb;

  /* Radii */
  --r-xs:  8px;
  --r-sm:  12px;
  --r-md:  18px;
  --r-lg:  24px;
  --r-xl:  32px;

  /* Nav */
  --nav-h: 66px;

  /* Fonts */
  --fh: 'Outfit', sans-serif;
  --fb: 'Inter', sans-serif;

  /* Shadows */
  --sh-card: 0 4px 24px rgba(0,0,0,0.35);
  --sh-hover: 0 12px 40px rgba(0,0,0,0.5);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--bg); color: var(--t-1); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: 5.5rem; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--t-1);
  line-height: 1.2;
  margin-top: 0.5rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  background: var(--olive-bg);
  border: 1px solid var(--olive-bdr);
  padding: 4px 14px;
  border-radius: 50px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(250,246,240,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--bdr);
  box-shadow: 0 4px 28px rgba(120,80,20,0.1);
}
.nav-container {
  width: 100%; max-width: 1200px;
  margin-inline: auto; padding-inline: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fh); font-weight: 800; font-size: 1.05rem;
  color: var(--t-1);
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-link {
  font-size: 0.87rem; font-weight: 500; color: var(--t-2);
  padding: 4px 0; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--t-1);
  border-bottom-color: var(--olive);
}
.nav-cta {
  background: var(--olive) !important;
  color: var(--t-dark) !important;
  padding: 7px 20px; border-radius: 50px;
  font-weight: 700; border-bottom: none !important;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--olive-dk) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--t-1); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex; align-items: stretch;
  padding-top: var(--nav-h);
  padding-inline: max(1.5rem, calc((100% - 1200px) / 2 + 1.5rem));
  padding-bottom: 1.5rem;
}

.bento-hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
  width: 100%;
}

/* ── HERO MAIN CARD ── */
.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #3b2a1a;
  min-height: 560px;
}

.hero-photo-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-photo-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(30,18,8,0.95) 0%, rgba(30,18,8,0.7) 42%, rgba(30,18,8,0.1) 100%),
    linear-gradient(to top,   rgba(30,18,8,0.90) 0%, transparent 40%);
}

.hero-card-content {
  position: relative; z-index: 1;
  padding: 2rem 2.5rem;
  display: flex; flex-direction: column;
  gap: 2rem; flex: 1;
}

.hero-card-top {
  display: flex; align-items: center; justify-content: space-between;
}
.hero-brand {
  font-family: var(--fh); font-weight: 800; font-size: 1rem;
  color: var(--olive); letter-spacing: 0.12em;
}
.hero-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.77rem; color: var(--t-2);
}
.hero-location i { color: var(--olive); }

.hero-card-name { margin-top: auto; }
.hero-card-name h1 {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.name-accent { color: var(--olive); }
.hero-subtitle {
  margin-top: 0.75rem;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.75); letter-spacing: 0.02em;
}

/* Stats bar (white bar at bottom of main card) */
.hero-stats-bar {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
}
.h-stat { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.h-stat-num {
  font-family: var(--fh); font-size: 1.5rem; font-weight: 800;
  color: #111; line-height: 1;
}
.h-stat-lbl {
  font-size: 0.64rem; font-weight: 600; color: #9ca3af;
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px;
}
.h-stat-divider { width: 1px; height: 30px; background: #e5e7eb; flex-shrink: 0; }
.play-contact-btn {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  background: #111; color: #fff;
  font-family: var(--fh); font-weight: 700; font-size: 0.85rem;
  padding: 0.65rem 1.35rem; border-radius: 50px;
  transition: background 0.22s, transform 0.22s; white-space: nowrap;
}
.play-contact-btn:hover {
  background: var(--olive); color: #111; transform: translateY(-1px);
}

/* ── HERO SIDEBAR ── */
.hero-sidebar {
  display: flex; flex-direction: column; gap: 12px;
}

.scard {
  border-radius: var(--r-lg);
  padding: 1.4rem 1.3rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  flex: 1;
}

/* Olive card */
.scard-olive { background: var(--olive); }
.scard-dot-row { display: flex; align-items: center; gap: 8px; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #111; flex-shrink: 0;
  position: relative;
}
.live-dot::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(0,0,0,0.2); animation: pulse-dot 2s ease-in-out infinite;
}
.scard-dot-text {
  font-size: 0.7rem; font-weight: 700; color: rgba(0,0,0,0.65);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.scard-title {
  font-family: var(--fh); font-size: 1.25rem; font-weight: 800;
  color: #111; line-height: 1.25;
}
.scard-sub { font-size: 0.77rem; color: rgba(0,0,0,0.5); font-weight: 500; }
.scard-btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: #111; color: #fff;
  font-weight: 700; font-size: 0.8rem;
  padding: 0.55rem 1.1rem; border-radius: 50px;
  width: fit-content; margin-top: 0.3rem;
  transition: background 0.2s;
}
.scard-btn-dark:hover { background: #333; }

/* White card */
.scard-white { background: var(--white); }
.scard-label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--t-gray);
}
.scard-label.light { color: var(--t-2); }
.scard-skill-list { display: flex; flex-direction: column; gap: 0.4rem; }
.scard-skill-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem; font-weight: 500; color: var(--t-dark);
  padding: 0.38rem 0.5rem; border-radius: var(--r-xs);
  transition: background 0.18s;
}
.scard-skill-list li:hover { background: #f4f4f4; }
.scard-skill-list li i { color: var(--olive-dk); width: 16px; text-align: center; font-size: 0.88rem; }

/* Dark card */
.scard-dark {
  background: var(--bg-card);
  border: 1px solid var(--bdr);
}
.scard-social-links { display: flex; flex-direction: column; gap: 7px; }
.sc-link {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 600;
  padding: 0.5rem 0.85rem; border-radius: var(--r-xs);
  border: 1px solid var(--bdr); color: var(--t-2);
  transition: all 0.2s;
}
.sc-link i { width: 16px; text-align: center; }
.sc-link:hover { color: var(--t-1); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.sc-link.linkedin:hover { background: rgba(10,102,194,0.25); border-color: #0A66C2; color: #fff; }
.sc-link.email:hover    { background: rgba(234,67,53,0.22);   border-color: #EA4335; color: #fff; }
.sc-link.whatsapp:hover { background: rgba(37,211,102,0.2);   border-color: #25D366; color: #fff; }

/* ── ABOUT ── */
.about { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }

.about-text-card {
  background: var(--bg-card); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 2rem;
}
.about-text-card p { color: var(--t-2); margin-bottom: 1rem; font-size: 0.97rem; }
.about-text-card p strong { color: var(--t-1); }

.skills-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.2rem; }
.skill-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.77rem; font-weight: 600;
  padding: 5px 12px; border-radius: 50px;
  background: var(--olive-bg); color: var(--olive);
  border: 1px solid var(--olive-bdr);
  transition: all 0.2s;
}
.skill-chip:hover { background: var(--olive); color: #111; }
.skill-chip i { font-size: 0.78rem; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--bdr);
  border-radius: var(--r-md); padding: 1.5rem 1rem;
  text-align: center; transition: all 0.3s;
}
.stat-card:hover { border-color: var(--olive-bdr); transform: translateY(-3px); box-shadow: var(--sh-card); }
.stat-number {
  display: block; font-family: var(--fh); font-size: 2rem;
  font-weight: 800; color: var(--olive); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 0.73rem; font-weight: 500; color: var(--t-2); line-height: 1.3; }

/* ── SERVICES ── */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }

.service-card {
  background: var(--bg-card); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 1.8rem 1.5rem;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--olive), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover, .service-card:focus-visible {
  border-color: var(--olive-bdr); transform: translateY(-5px);
  box-shadow: var(--sh-hover); outline: none;
}
.service-card:hover::after, .service-card:focus-visible::after { transform: scaleX(1); }

.service-card.featured {
  background: var(--olive); border-color: transparent;
}
.service-card.featured h3   { color: #111; }
.service-card.featured p    { color: rgba(0,0,0,0.58); }
.service-card.featured .service-icon { background: rgba(0,0,0,0.1); color: #111; }
.service-card.featured .service-tags li { background: rgba(0,0,0,0.1); color: #444; }
.service-card.featured::after { background: linear-gradient(90deg, #111, transparent); }

.featured-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; background: #111; color: var(--olive);
  padding: 3px 10px; border-radius: 50px;
}
.service-icon {
  width: 48px; height: 48px; border-radius: var(--r-xs);
  background: var(--olive-bg); color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--fh); font-size: 1rem; font-weight: 700;
  color: var(--t-1); margin-bottom: 8px;
}
.service-card p { font-size: 0.85rem; color: var(--t-2); line-height: 1.6; margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.service-tags li {
  font-size: 0.67rem; font-weight: 600;
  padding: 3px 9px; border-radius: 50px;
  background: rgba(255,255,255,0.06); color: var(--t-2);
}

/* ── EXPERIENCE ── */
.experience { background: var(--bg-2); }
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--olive), rgba(181,148,58,0.05));
  border-radius: 2px;
}
.timeline-item { position: relative; padding-bottom: 1.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -1.95rem; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--olive); border: 2px solid var(--bg-2);
  box-shadow: 0 0 0 2px var(--olive); transition: transform 0.2s;
}
.timeline-item:hover .timeline-dot { transform: scale(1.3); }
.timeline-content {
  background: var(--bg-card); border: 1px solid var(--bdr);
  border-radius: var(--r-md); padding: 1.1rem 1.4rem;
  transition: all 0.3s;
}
.timeline-item:hover .timeline-content {
  border-color: var(--olive-bdr); transform: translateX(4px);
}
.timeline-date {
  display: block; font-size: 0.68rem; font-weight: 700;
  color: var(--olive); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 4px;
}
.timeline-content h3 {
  font-family: var(--fh); font-size: 1rem; font-weight: 700;
  color: var(--t-1); margin-bottom: 3px;
}
.timeline-role {
  display: block; font-size: 0.79rem; font-weight: 600;
  color: var(--olive); margin-bottom: 6px;
}
.timeline-content p:last-child { font-size: 0.84rem; color: var(--t-2); line-height: 1.5; }

/* ── EDUCATION ── */
.education-section { background: var(--bg); }
.edu-featured .timeline-content {
  border-color: var(--olive-bdr);
  background: linear-gradient(135deg, var(--bg-card) 80%, var(--olive-bg));
}
.edu-badge-incurso {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}
.edu-modules {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 0.8rem; padding: 0; list-style: none;
}
.edu-modules li {
  display: flex; align-items: center; gap: 6px;
  background: var(--olive-bg); border: 1px solid var(--olive-bdr);
  color: var(--olive); font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
  transition: background 0.2s;
}
.edu-modules li:hover { background: var(--olive); color: #fff; }


/* ── LANGUAGES ── */
.languages-section { background: var(--bg); }
.lang-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 12px; }

.lang-card {
  background: var(--bg-card); border: 1px solid var(--bdr);
  border-radius: var(--r-md); padding: 1.2rem;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 0.3s;
}
.lang-card:hover { border-color: var(--olive-bdr); transform: translateY(-3px); box-shadow: var(--sh-card); }
.lang-flag { font-size: 1.6rem; line-height: 1; }
.lang-info { display: flex; flex-direction: column; gap: 3px; }
.lang-name { font-family: var(--fh); font-weight: 700; font-size: 0.95rem; color: var(--t-1); }
.lang-level { font-size: 0.74rem; color: var(--t-2); }
.lang-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 50px; overflow: hidden; }
.lang-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--olive), var(--orange));
  border-radius: 50px;
  transition: width 1.3s cubic-bezier(0.4,0,0.2,1);
}
.lang-fill.animated { width: var(--tw, 100%); }

/* ── CONTACT ── */
.contact { background: var(--bg-2); }
.contact-intro { font-size: 0.95rem; color: var(--t-2); max-width: 480px; margin-inline: auto; margin-top: 0.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--bdr);
  border-radius: var(--r-md); padding: 1rem 1.2rem;
  transition: all 0.3s;
}
.contact-item:hover { border-color: var(--olive-bdr); transform: translateX(4px); }
.contact-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--olive-bg); color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.contact-label {
  display: block; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--t-3); margin-bottom: 2px;
}
.contact-value { display: block; font-size: 0.87rem; font-weight: 500; color: var(--t-1); word-break: break-all; }

.social-block h3 { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; color: var(--t-1); margin-bottom: 1rem; }
.social-links { display: flex; flex-direction: column; gap: 9px; margin-bottom: 1.5rem; }
.social-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 0.85rem 1.2rem; border-radius: var(--r-md);
  font-weight: 600; font-size: 0.88rem;
  border: 1px solid var(--bdr); color: var(--t-1);
  background: var(--bg-card); transition: all 0.3s;
}
.social-btn i { font-size: 1.05rem; width: 18px; text-align: center; }
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-card); }
.social-btn.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.social-btn.email:hover    { background: #EA4335; border-color: #EA4335; }
.social-btn.phone:hover    { background: #25D366; border-color: #25D366; }

.availability-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--olive-bg); border: 1px solid var(--olive-bdr);
  padding: 10px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500; color: var(--olive);
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--olive); position: relative; flex-shrink: 0;
}
.pulse::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--olive); opacity: 0.3;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ── FOOTER ── */
.footer {
  background: #0d0d0d;
  color: var(--t-3);
  padding-block: 2rem;
  text-align: center;
  border-top: 1px solid var(--bdr);
}
.footer p { font-size: 0.82rem; }
.footer-sub { margin-top: 4px; font-size: 0.77rem; }

/* ── ANIMATIONS ── */
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%       { transform: scale(2); opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bento-hero { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 2rem; }
  .hero-card { min-height: 440px; }
  .hero-sidebar { display: grid; grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(4,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-sidebar { grid-template-columns: 1fr; }
  .hero-stats-bar { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-card-name h1 { font-size: 2rem; }
  .hero-stats-bar { padding: 0.9rem 1.2rem; }

  .nav-links {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(20,20,20,0.98);
    flex-direction: column; padding: 1rem;
    gap: 0.4rem; border-bottom: 1px solid var(--bdr);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1rem; padding: 0.5rem 0; color: var(--t-2); }
  .nav-cta { text-align: center; border-radius: var(--r-xs); }
  .hamburger { display: flex; }
}

@media (max-width: 420px) {
  .lang-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 380px; }
}
