/* ===================================================
   GIGI LABS — style.css v5
   Brand: #faf8f4 bg · #1a1816 text · #c4622a accent
   Fonts: Fraunces (display) + DM Sans (body)
   =================================================== */

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

:root{
  --bg:       #faf8f4;
  --text:     #1a1816;
  --muted:    #6b6560;
  --accent:   #c4622a;
  --accent-light:#f5ede7;
  --accent-glow:rgba(196,98,42,.08);
  --border:   #e4ddd6;
  --white:    #ffffff;
  --card:     #ffffff;
  --radius:   16px;
  --max-w:    1100px;
}

html{scroll-behavior:smooth;overflow-x:hidden}

body{
  font-family:'DM Sans',sans-serif;
  background:var(--bg);
  color:var(--text);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

body::after{
  content:'';position:fixed;inset:0;
  pointer-events:none;z-index:9999;opacity:.022;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat:repeat;background-size:180px;
}

img,svg{display:block}
a{color:inherit}
button{-webkit-tap-highlight-color:transparent}
a{-webkit-tap-highlight-color:transparent}


/* =============================================
   NAV
   ============================================= */
.site-nav{
  position:sticky;top:0;z-index:100;
  background:rgba(250,248,244,.9);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  padding:0 3rem;height:58px;
  display:flex;align-items:center;justify-content:space-between;
}

.nav-logo{
  display:flex;align-items:center;gap:.6rem;
  text-decoration:none;color:var(--text);
  transition:opacity .2s;
}
.nav-logo:hover{opacity:.75}
.nav-logo svg{
  width:28px;height:28px;flex-shrink:0;
}
.nav-logo-text{
  font-weight:500;font-size:13.5px;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.nav-links{display:flex;align-items:center;gap:2rem}
.nav-link{font-size:13px;color:var(--muted);text-decoration:none;transition:color .2s}
.nav-link:hover{color:var(--text)}
.nav-cta{
  background:var(--text);color:var(--bg);
  padding:.48rem 1.15rem;border-radius:100px;
  text-decoration:none;font-size:13px;font-weight:500;
  transition:all .25s ease;border:1.5px solid var(--text);
}
.nav-cta:hover{background:var(--accent);border-color:var(--accent);transform:translateY(-1px)}

.nav-sep{
  width:1px;height:14px;
  background:var(--border);
  flex-shrink:0;
}
.nav-util{
  font-size:12px;color:var(--muted);
  text-decoration:none;
  display:inline-flex;align-items:center;gap:.2rem;
  opacity:.7;
  transition:all .2s;
}
.nav-util:hover{color:var(--accent);opacity:1}
.nav-util svg{transition:transform .2s}
.nav-util:hover svg{transform:translate(1.5px,-1.5px)}

.nav-toggle{
  display:none;background:none;border:none;cursor:pointer;
  width:28px;height:28px;position:relative;flex-shrink:0;
}
.nav-toggle span{
  display:block;width:20px;height:1.5px;
  background:var(--text);position:absolute;left:4px;transition:all .3s ease;
}
.nav-toggle span:nth-child(1){top:8px}
.nav-toggle span:nth-child(2){top:14px}
.nav-toggle span:nth-child(3){top:20px}
.nav-toggle.open span:nth-child(1){transform:rotate(45deg);top:14px}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:rotate(-45deg);top:14px}


/* =============================================
   HERO
   ============================================= */
.hero{
  min-height:calc(100vh - 58px);
  display:grid;grid-template-columns:1fr 1fr;
  align-items:center;gap:4rem;
  padding:4.5rem 3rem;
  max-width:var(--max-w);margin:0 auto;
}
.hero-content{max-width:500px}

.hero-availability{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:12px;font-weight:500;letter-spacing:.03em;
  color:var(--muted);margin-bottom:1.6rem;
}
.hero-availability::before{
  content:'';width:6px;height:6px;border-radius:50%;
  background:#6a9a4c;flex-shrink:0;
}

.hero-heading{
  font-family:'Fraunces',serif;
  font-size:clamp(2.4rem,3.8vw,3.4rem);
  font-weight:300;line-height:1.1;
  margin-bottom:1.4rem;letter-spacing:-.01em;
}
.hero-heading em{font-style:italic;color:var(--accent);font-weight:300}

.hero-sub{
  font-size:16.5px;color:var(--muted);
  line-height:1.8;margin-bottom:2.2rem;
}

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

.btn-primary{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--text);color:var(--bg);
  padding:.8rem 1.8rem;border-radius:100px;
  text-decoration:none;font-weight:500;font-size:15px;
  transition:all .25s ease;border:1.5px solid var(--text);
}
.btn-primary:hover{
  background:var(--accent);border-color:var(--accent);
  transform:translateY(-2px);box-shadow:0 8px 24px rgba(196,98,42,.15);
}
.btn-primary svg{transition:transform .25s ease}
.btn-primary:hover svg{transform:translateX(3px)}

.btn-ghost{
  color:var(--muted);text-decoration:none;font-size:15px;
  position:relative;padding-bottom:2px;transition:color .2s;
}
.btn-ghost::after{
  content:'';position:absolute;bottom:0;left:0;right:0;
  height:1px;background:var(--border);transition:background .2s;
}
.btn-ghost:hover{color:var(--text)}
.btn-ghost:hover::after{background:var(--text)}

/* Photo */
.hero-photo-area{display:flex;justify-content:center;align-items:center}
.hero-photo{
  width:300px;height:360px;
  border-radius:20px;background:var(--border);
  position:relative;overflow:hidden;
  box-shadow:0 20px 60px rgba(26,24,22,.08);
  flex-shrink:0;
}
.hero-photo img{width:100%;height:100%;object-fit:cover;display:block}
.hero-photo--placeholder{
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:.8rem;
  background:linear-gradient(145deg,#ece8e2,#e0dbd4);
}
.hero-photo--placeholder svg{opacity:.25}
.hero-photo--placeholder span{
  font-size:12px;color:var(--muted);opacity:.6;
  font-weight:500;letter-spacing:.05em;
}


/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip{
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:1.4rem 3rem;
}
.trust-inner{
  max-width:var(--max-w);margin:0 auto;
  display:flex;align-items:center;gap:2rem;flex-wrap:wrap;
  overflow:hidden;
}
.trust-label{
  font-size:10px;font-weight:500;letter-spacing:.18em;
  color:var(--muted);text-transform:uppercase;white-space:nowrap;flex-shrink:0;
}
.trust-sep{width:1px;height:16px;background:var(--border);flex-shrink:0}
.trust-logos{display:flex;align-items:center;gap:2rem;flex-wrap:wrap}
.trust-logo{
  font-size:15px;font-weight:500;color:var(--muted);
  letter-spacing:.02em;opacity:.6;transition:opacity .2s;
}
.trust-logo:hover{opacity:1}


/* =============================================
   TECH STRIP — matches trust strip pattern
   ============================================= */
.stack-strip{
  padding:1.3rem 3rem;
  border-bottom:1px solid var(--border);
}
.stack-inner{
  max-width:var(--max-w);margin:0 auto;
  display:flex;align-items:center;gap:1.6rem;flex-wrap:wrap;
}
.stack-label{
  font-size:10px;font-weight:500;letter-spacing:.18em;
  color:var(--muted);text-transform:uppercase;white-space:nowrap;flex-shrink:0;
}
.stack-sep{width:1px;height:16px;background:var(--border);flex-shrink:0}
.stack-items{
  display:flex;align-items:center;flex-wrap:wrap;
  gap:.15rem;
}
.stack-item{
  font-size:14px;
  color:var(--muted);
  opacity:.75;
  transition:opacity .2s;
}
.stack-item:hover{opacity:1}
.stack-dot{
  color:var(--border);
  font-size:11px;
  user-select:none;
}


/* =============================================
   SECTIONS
   ============================================= */
.section{padding:5.5rem 3rem;max-width:var(--max-w);margin:0 auto}
.section-label{
  font-size:11px;font-weight:500;letter-spacing:.22em;
  color:var(--accent);text-transform:uppercase;
  margin-bottom:.5rem;
  display:flex;align-items:center;gap:.5rem;
}
.section-label::before{
  content:'';width:14px;height:1.5px;background:var(--accent);
}
.section-heading{
  font-family:'Fraunces',serif;
  font-size:clamp(1.7rem,2.5vw,2.4rem);
  font-weight:300;line-height:1.22;
  margin-bottom:2.5rem;max-width:520px;
}


/* =============================================
   SERVICES
   ============================================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.1rem;
}
.service-card{
  background:var(--card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.8rem 1.5rem;
  transition:all .3s ease;position:relative;overflow:hidden;
}
.service-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--accent);transform:scaleX(0);
  transform-origin:left;transition:transform .35s ease;
}
.service-card:hover{
  border-color:var(--accent);transform:translateY(-4px);
  box-shadow:0 14px 40px var(--accent-glow);
}
.service-card:hover::before{transform:scaleX(1)}
.service-icon{
  width:38px;height:38px;background:var(--accent-light);
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;
}
.service-title{font-weight:500;font-size:15.5px;margin-bottom:.5rem}
.service-desc{font-size:13.5px;color:var(--muted);line-height:1.75}
.service-tags{display:flex;flex-wrap:wrap;gap:.3rem;margin-top:1rem}
.tag{
  font-size:10.5px;font-weight:500;
  background:var(--accent-light);color:var(--accent);
  padding:.18rem .5rem;border-radius:100px;
}

.services-note{
  margin-top:1.8rem;
  font-size:13.5px;
  color:var(--muted);
  font-style:italic;
}


/* =============================================
   EXPERIENCE
   ============================================= */
.experience-section{
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.exp-grid{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem}
.exp-col-heading{
  font-weight:500;font-size:12px;letter-spacing:.08em;
  text-transform:uppercase;color:var(--muted);
  margin-bottom:1.3rem;padding-bottom:.6rem;
  border-bottom:1px solid var(--border);
}
.exp-timeline{position:relative;padding-left:1.3rem}
.exp-timeline::before{
  content:'';position:absolute;top:.5rem;bottom:.5rem;left:0;
  width:1px;background:var(--border);
}
.exp-entry{position:relative;margin-bottom:1.5rem}
.exp-entry:last-child{margin-bottom:0}
.exp-entry::before{
  content:'';position:absolute;left:-1.3rem;top:.5rem;
  width:7px;height:7px;border-radius:50%;
  background:var(--border);border:2px solid var(--white);
}
.exp-entry:first-child::before{background:var(--accent)}
.exp-entry-header{
  display:flex;justify-content:space-between;align-items:baseline;
  gap:.8rem;margin-bottom:.15rem;flex-wrap:wrap;
}
.exp-entry-role{font-weight:500;font-size:14px}
.exp-entry-date{font-size:11.5px;color:var(--muted);white-space:nowrap}
.exp-entry-company{font-size:12.5px;color:var(--accent);margin-bottom:.25rem}
.exp-entry-desc{font-size:13px;color:var(--muted);line-height:1.7}

.exp-domains{display:flex;flex-wrap:wrap;gap:.45rem}
.exp-domain{
  padding:.5rem .9rem;border:1px solid var(--border);
  border-radius:10px;font-size:13px;color:var(--muted);
  transition:all .2s ease;background:var(--bg);
}
.exp-domain:hover{border-color:var(--accent);color:var(--accent);background:var(--accent-light)}
.exp-domain-icon{margin-right:.25rem}


/* =============================================
   HOW I WORK
   ============================================= */
.process-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1.4rem;counter-reset:step;
}
.process-step{position:relative;padding-top:2.4rem}
.process-step::before{
  counter-increment:step;
  content:counter(step,decimal-leading-zero);
  font-family:'Fraunces',serif;font-size:1.9rem;font-weight:300;
  color:var(--accent);opacity:.4;line-height:1;
  position:absolute;top:0;left:0;
}
.process-title{font-weight:500;font-size:14.5px;margin-bottom:.4rem}
.process-desc{font-size:13px;color:var(--muted);line-height:1.7}


/* =============================================
   ABOUT
   ============================================= */
.about-section{border-top:1px solid var(--border)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.about-body p{font-size:15.5px;color:var(--muted);line-height:1.85;margin-bottom:1.1rem}
.about-body p strong{color:var(--text);font-weight:500}
.about-cat-block{
  margin-top:1.3rem;
  padding-top:1.2rem;
  border-top:1px solid var(--border);
  display:flex;align-items:center;gap:.9rem;
}
.about-cat-photo{
  width:52px;height:52px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  background:var(--accent-light);
  display:flex;align-items:center;justify-content:center;
}
.about-cat-photo img{
  width:100%;height:100%;
  object-fit:cover;display:block;
}
.about-cat-placeholder{
  font-size:24px;
  line-height:1;
}
.about-cat-text{
  font-size:13px !important;
  font-style:italic;
  color:var(--muted) !important;
  margin-bottom:0 !important;
  line-height:1.6 !important;
}

.stats{display:grid;grid-template-columns:1fr 1fr;gap:.9rem}
.stat{
  padding:1.2rem;background:var(--white);
  border:1px solid var(--border);border-radius:14px;
  transition:all .3s ease;
}
.stat:hover{border-color:var(--accent);transform:translateY(-2px)}
.stat-n{
  font-family:'Fraunces',serif;font-size:2rem;
  font-weight:300;line-height:1;margin-bottom:.25rem;
}
.stat-l{font-size:12.5px;color:var(--muted);line-height:1.4}


/* =============================================
   CV DOWNLOAD BUTTON
   ============================================= */
.btn-cv{
  display:inline-flex;align-items:center;gap:.45rem;
  font-size:13.5px;font-weight:500;
  color:var(--accent);text-decoration:none;
  padding:.6rem 1.2rem;
  border:1px solid var(--accent);
  border-radius:100px;
  transition:all .25s ease;
  background:transparent;
}
.btn-cv:hover{
  background:var(--accent);color:var(--white);
  transform:translateY(-1px);
}
.btn-cv svg{transition:transform .25s ease}
.btn-cv:hover svg{transform:translateY(2px)}


/* =============================================
   FAQ
   ============================================= */
.faq-section{
  border-top:1px solid var(--border);
  background:var(--white);
}
.faq-grid{align-items: start;display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.faq-item{
  align-self: start;
  height: fit-content;
  border:1px solid var(--border);border-radius:14px;
  overflow:hidden;transition:border-color .2s;background:var(--bg);
}
.faq-item:hover{border-color:var(--accent)}
.faq-question{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1.2rem 1.4rem;cursor:pointer;
  background:none;border:none;width:100%;text-align:left;
  font-family:inherit;font-size:14.5px;font-weight:500;color:var(--text);
  transition:color .2s;
}
.faq-question:hover{color:var(--accent)}
.faq-icon{width:20px;height:20px;flex-shrink:0;position:relative}
.faq-icon::before,.faq-icon::after{
  content:'';position:absolute;background:var(--muted);border-radius:1px;
  transition:transform .3s ease,opacity .3s ease;
}
.faq-icon::before{width:12px;height:1.5px;top:50%;left:50%;transform:translate(-50%,-50%)}
.faq-icon::after{width:1.5px;height:12px;top:50%;left:50%;transform:translate(-50%,-50%)}
.faq-item.open .faq-icon::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-item.open .faq-answer{max-height:300px}
.faq-answer-inner{padding:0 1.4rem 1.3rem;font-size:13.5px;color:var(--muted);line-height:1.75}


/* =============================================
   CONTACT
   ============================================= */
.contact{
  background:var(--text);padding:6.5rem 3rem;
  text-align:center;position:relative;overflow:hidden;
}
.contact::before{
  content:'';position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);width:500px;height:500px;
  background:radial-gradient(circle,rgba(196,98,42,.06) 0%,transparent 70%);
  pointer-events:none;
}
.contact-inner{max-width:520px;margin:0 auto;position:relative;z-index:1}
.contact-pre{
  font-size:11px;font-weight:500;letter-spacing:.22em;
  color:var(--accent);text-transform:uppercase;margin-bottom:.9rem;
}
.contact-heading{
  font-family:'Fraunces',serif;
  font-size:clamp(1.9rem,3.4vw,2.8rem);
  font-weight:300;color:var(--bg);line-height:1.15;margin-bottom:1rem;
}
.contact-heading em{font-style:italic;color:#e8906a}
.contact-sub{font-size:15px;color:#7a7470;line-height:1.8;margin-bottom:2.2rem}

.contact-actions{
  display:flex;gap:.8rem;
  justify-content:center;
  flex-wrap:wrap;
}
.contact-btn{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--accent);color:var(--white);
  padding:.85rem 2.1rem;border-radius:100px;
  text-decoration:none;font-weight:500;font-size:15px;
  transition:all .25s ease;border:1.5px solid var(--accent);
}
.contact-btn:hover{background:transparent;color:var(--accent);transform:translateY(-2px)}
.contact-btn svg{transition:transform .25s ease}

.contact-btn--linkedin{
  background:transparent;
  color:var(--accent);
  border:1.5px solid rgba(196,98,42,.4);
}
.contact-btn--linkedin:hover{
  background:var(--accent);
  color:var(--white);
  border-color:var(--accent);
}


/* =============================================
   FOOTER — text only, no logo
   ============================================= */
.site-footer{
  background:var(--text);border-top:1px solid #2a2724;
  padding:1.5rem 3rem;
  display:flex;align-items:center;justify-content:space-between;
}
.footer-brand{
  font-size:12px;color:#4a4744;
  letter-spacing:.1em;font-weight:500;
  text-transform:uppercase;
}
.footer-copy{font-size:12px;color:#3a3734}


/* =============================================
   SCROLL REVEAL
   ============================================= */
.sr{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.sr.visible{opacity:1;transform:translateY(0)}
.sr-d1{transition-delay:.06s}
.sr-d2{transition-delay:.14s}
.sr-d3{transition-delay:.24s}
.sr-d4{transition-delay:.34s}

@keyframes heroIn{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}
.hi{opacity:0;animation:heroIn .6s ease forwards}
.hi-d1{animation-delay:.08s}
.hi-d2{animation-delay:.18s}
.hi-d3{animation-delay:.28s}
.hi-d4{animation-delay:.4s}


/* =============================================
   RESPONSIVE — tablet
   ============================================= */
@media(max-width:1024px){
  .site-nav{padding:0 2rem}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr);gap:1.8rem}
  .hero{gap:2.5rem;padding:3.5rem 2rem}
  .hero-photo{width:260px;height:320px}
  .section{padding:4.5rem 2rem}
  .trust-strip,.stack-strip{padding:1.2rem 2rem}
  .contact{padding:5rem 2rem}
  .stack-inner,.trust-inner{flex-direction:column;align-items:flex-start;gap:.5rem}
  .stack-sep,.trust-sep{display:none}
}

/* =============================================
   RESPONSIVE — mobile (raised from 768 to 820
   to prevent nav cramping)
   ============================================= */
@media(max-width:820px){
  /* Nav */
  .site-nav{padding:0 1.25rem;height:54px}
  .nav-logo svg{width:24px;height:24px}
  .nav-logo-text{font-size:12.5px;letter-spacing:.16em}
  .nav-links{
    display:none;
    position:fixed;top:54px;left:0;right:0;
    background:rgba(250,248,244,.98);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    flex-direction:column;
    gap:0;
    border-bottom:1px solid var(--border);
    padding:.5rem 0;
    box-shadow:0 8px 24px rgba(26,24,22,.06);
  }
  .nav-links.open{display:flex}
  .nav-link{
    display:block;
    padding:.9rem 1.5rem;
    width:100%;text-align:left;
    font-size:14px;
    border-bottom:1px solid var(--border);
  }
  .nav-link:last-of-type{border-bottom:none}
  .nav-cta{
    display:block;
    margin:.75rem 1.25rem .5rem;
    width:auto;
    text-align:center;
    border-radius:100px;
    padding:.7rem 1.25rem;
    font-size:14px;
  }
  .nav-sep{display:none}
  .nav-util{
    display:flex;
    align-items:center;
    padding:.9rem 1.5rem;
    gap:.35rem;
    font-size:14px;
    width:100%;
    opacity:1;
    border-bottom:1px solid var(--border);
  }
  .nav-toggle{display:block}

  /* Hero — centered profile banner on mobile */
  .hero{
    grid-template-columns:1fr;
    padding:2.5rem 1.25rem;
    min-height:auto;
    gap:0;
    text-align:center;
  }
  .hero-content{max-width:100%}
  .hero-photo-area{
    order:-1;
    justify-content:center;
    margin-bottom:1.5rem;
  }
  .hero-photo{
    width:110px;height:110px;
    border-radius:50%;
    box-shadow:0 6px 20px rgba(26,24,22,.08);
  }
  .hero-photo img{object-position:center top}
  .hero-availability{
    margin-bottom:1.2rem;
    font-size:11.5px;
    justify-content:center;
  }
  .hero-heading{
    font-size:clamp(1.9rem,7vw,2.5rem);
    margin-bottom:1.1rem;
  }
  .hero-sub{
    font-size:15px;
    line-height:1.75;
    margin-bottom:1.8rem;
    text-align:left;
  }
  .hero-actions{
    flex-direction:column;
    width:100%;
    gap:.6rem;
    text-align:center;
  }
  .btn-primary{
    padding:.75rem 1.5rem;
    font-size:14px;
    width:100%;
    justify-content:center;
  }
  .btn-ghost{
    font-size:14px;
    text-align:center;
    padding:.65rem 1.5rem;
    border:1.5px solid var(--border);
    border-radius:100px;
    width:100%;
    display:block;
  }
  .btn-ghost::after{display:none}
  .btn-ghost:hover{border-color:var(--text)}

  /* Strips */
  .trust-strip{padding:1rem 1.25rem}
  .trust-inner{gap:.8rem}
  .trust-label{font-size:9px}
  .trust-logos{gap:1.2rem}
  .trust-logo{font-size:14px}

  .stack-strip{padding:1rem 1.25rem}
  .stack-inner{gap:.4rem}
  .stack-label{font-size:9px}
  .stack-item{font-size:13px}

  /* Sections */
  .section{padding:3rem 1.25rem}
  .section-heading{
    font-size:clamp(1.5rem,5vw,1.9rem);
    margin-bottom:2rem;
  }

  /* Services */
  .services-grid{grid-template-columns:1fr;gap:.8rem}
  .service-card{padding:1.4rem 1.2rem}
  .service-card:hover{transform:none;box-shadow:none}
  .service-card::before{display:none}

  /* Experience */
  .exp-grid{grid-template-columns:1fr;gap:2rem}
  .exp-entry-desc{font-size:12.5px}

  /* Process */
  .process-grid{grid-template-columns:1fr 1fr;gap:1.2rem}
  .process-step{padding-top:2rem}
  .process-step::before{font-size:1.6rem}
  .process-title{font-size:13.5px}
  .process-desc{font-size:12.5px}

  /* About */
  .about-grid{grid-template-columns:1fr;gap:2rem}
  .about-body p{font-size:14.5px}
  .stats{gap:.7rem}
  .stat{padding:1rem}
  .stat-n{font-size:1.7rem}
  .stat-l{font-size:11.5px}

  /* FAQ */
  .faq-grid{grid-template-columns:1fr;gap:.7rem}
  .faq-question{
    padding:1rem 1.2rem;
    font-size:13.5px;
    min-height:48px;
  }
  .faq-answer-inner{
    padding:0 1.2rem 1.1rem;
    font-size:13px;
  }

  /* CV button */
  .btn-cv{font-size:13px;padding:.55rem 1rem}

  /* Contact */
  .contact{padding:3.5rem 1.25rem}
  .contact-heading{font-size:clamp(1.7rem,6vw,2.2rem)}
  .contact-sub{font-size:14px;margin-bottom:1.8rem}
  .contact-actions{flex-direction:column;gap:.6rem}
  .contact-btn{
    padding:.8rem 1.8rem;
    font-size:14px;
    justify-content:center;
    width:100%;
  }

  /* Footer */
  .site-footer{
    flex-direction:column;gap:.3rem;
    text-align:center;padding:1.2rem 1.25rem;
  }
}

/* =============================================
   RESPONSIVE — small phones
   ============================================= */
@media(max-width:400px){
  .hero{padding:1.5rem 1rem 2rem}
  .hero-photo{width:90px;height:90px}
  .hero-heading{font-size:1.75rem}

  .section{padding:2.5rem 1rem}
  .process-grid{grid-template-columns:1fr}

  .trust-strip,.stack-strip{padding:.9rem 1rem}
  .contact{padding:3rem 1rem}

  .exp-entry-header{flex-direction:column;gap:.1rem}

  .btn-primary{padding:.7rem 1.2rem;font-size:13.5px}
  .site-footer{padding:1rem}
}
