/* ============================================================
   Jeremy Graphiste — style.css?v=1
   Dark indigo + lime green — comic book youthful feel
   ============================================================ */

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

:root {
  --primary:   #1a1a2e;
  --primary-2: #16213e;
  --primary-3: #0f3460;
  --accent:    #84cc16;
  --accent-dk: #65a30d;
  --accent-lt: #bef264;
  --light-bg:  #f3f4f6;
  --light-2:   #e5e7eb;
  --text:      #1f2937;
  --text-lt:   #6b7280;
  --white:     #ffffff;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(0,0,0,.18);
  --transition: .25s ease;
  --max:       1200px;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--text-lt);
  line-height: 1.8;
}

/* ---------- Utilities ---------- */
.container { width: 92%; max-width: var(--max); margin: 0 auto; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  padding: .25rem .85rem;
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1rem; }
.section-desc  { max-width: 620px; color: var(--text-lt); margin: 0 auto 2.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .92rem;
  font-weight: 700;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: .02em;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(132,204,22,.4);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-3);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Header & Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,46,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(132,204,22,.15);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo img { height: 42px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-menu a {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: .45rem .85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: .02em;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
  background: rgba(132,204,22,.1);
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--primary) !important;
  font-weight: 800 !important;
  padding: .45rem 1.1rem !important;
}
.nav-cta:hover {
  background: var(--accent-lt) !important;
  color: var(--primary) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('/images/hero-bd.jpg') center center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,.93) 0%, rgba(15,52,96,.90) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--accent);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero .lead { color: rgba(255,255,255,.78); margin-bottom: 2.25rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  bottom: 2.5rem; right: 5%;
  z-index: 2;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: .82rem;
  padding: .9rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 1.5rem; }

/* ---------- Scroll indicator ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-indicator span { width: 1px; height: 36px; background: rgba(132,204,22,.5); display: block; animation: scrollPulse 1.6s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--primary);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(132,204,22,.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: .75rem; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
  letter-spacing: .05em;
}

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-light { background: var(--light-bg); }
.section-dark  { background: var(--primary); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .lead, .section-dark p { color: rgba(255,255,255,.72); }
.section-dark .section-label { color: var(--accent); border-color: var(--accent); }
.section-dark .section-desc { color: rgba(255,255,255,.62); }

/* ---------- 2-col layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-img { position: relative; }
.col-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}
.col-img::after {
  content: '';
  position: absolute;
  inset: -8px -8px auto auto;
  width: 60%; height: 60%;
  border-top: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  border-radius: 0 var(--radius) 0 0;
  pointer-events: none;
}

/* ---------- Services / skills cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.service-card p  { font-size: .88rem; color: var(--text-lt); margin: 0; }

/* ---------- Portfolio grid ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--primary-2);
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: var(--white); font-size: 1rem; margin-bottom: .3rem; }
.portfolio-overlay span { color: var(--accent); font-size: .8rem; font-weight: 600; }

/* ---------- Full portfolio grid ---------- */
.portfolio-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ---------- Illustration banner ---------- */
.illustration-banner {
  position: relative;
  background: url('/images/illustration.jpg') center center / cover no-repeat;
  padding: 6rem 0;
}
.illustration-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,.88);
}
.illustration-banner .container { position: relative; z-index: 2; }

/* ---------- CTA section (publications) ---------- */
.cta-section {
  background: var(--primary);
  padding: 5rem 0;
}
.cta-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.cta-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.cta-img img { width: 100%; object-fit: cover; display: block; }

/* ---------- Quote block ---------- */
.quote-block {
  background: var(--primary-2);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2rem 2rem 2.5rem;
  margin: 2rem 0;
}
.quote-block p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin-bottom: .75rem;
}
.quote-author {
  font-size: .82rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- Blog / Sketchbook ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: all var(--transition);
  border: 1px solid var(--light-2);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--primary-2);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-tag {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--accent);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.blog-card-body { padding: 1.4rem; }
.blog-card-meta {
  font-size: .75rem;
  color: var(--text-lt);
  margin-bottom: .65rem;
  display: flex;
  gap: 1rem;
}
.blog-card-body h3 {
  font-size: 1rem;
  margin-bottom: .6rem;
  color: var(--primary);
}
.blog-card-body h3 a { color: inherit; }
.blog-card-body h3 a:hover { color: var(--accent-dk); }
.blog-card-body p { font-size: .86rem; color: var(--text-lt); margin-bottom: 1rem; }

/* ---------- Article page ---------- */
.article-hero {
  padding: 7rem 0 3.5rem;
  background: var(--primary);
}
.article-hero h1 { color: var(--white); }
.article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: .83rem;
  color: rgba(255,255,255,.6);
}
.article-meta span { display: flex; align-items: center; gap: .35rem; }
.article-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2.5rem 0;
  box-shadow: var(--shadow);
}
.article-hero-img img { width: 100%; max-height: 500px; object-fit: cover; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin: 2.5rem 0 1rem; }
.article-body h3 { margin: 2rem 0 .75rem; }
.article-body p  { margin-bottom: 1.25rem; }
.article-body ul { margin: 1rem 0 1.25rem 1.5rem; list-style: disc; }
.article-body ul li { margin-bottom: .5rem; }
.article-mid-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2.5rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.article-mid-img img { width: 100%; object-fit: cover; }

/* ---------- Tags ---------- */
.tag-list { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.tag {
  font-size: .74rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 999px;
  background: var(--light-bg);
  color: var(--text-lt);
  border: 1px solid var(--light-2);
  transition: all var(--transition);
}
.tag:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info .lead { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(132,204,22,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--accent);
  border: 1px solid rgba(132,204,22,.25);
}
.contact-item h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-lt); margin-bottom: .2rem; }
.contact-item p  { margin: 0; font-size: .92rem; }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--light-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--primary); margin-bottom: .45rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(132,204,22,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ---------- Social links ---------- */
.social-links { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  padding: .45rem .9rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  transition: all var(--transition);
}
.social-link:hover {
  color: var(--primary);
  background: var(--accent);
  border-color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary);
  border-top: 1px solid rgba(132,204,22,.15);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-col ul li + li { margin-top: .55rem; }
.footer-col ul li a {
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--primary);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(132,204,22,.06);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.65); max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ---------- About page ---------- */
.timeline { margin: 2rem 0; }
.timeline-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
}
.timeline-year {
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 55px;
  padding-top: .15rem;
}
.timeline-body { border-left: 2px solid rgba(132,204,22,.2); padding-left: 1.25rem; }
.timeline-body h4 { font-size: .95rem; margin-bottom: .25rem; }
.timeline-body p  { font-size: .86rem; color: var(--text-lt); margin: 0; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.skill-item { margin-bottom: .5rem; }
.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: .84rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .4rem;
}
.skill-bar {
  height: 6px;
  background: var(--light-2);
  border-radius: 999px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
}
.error-code {
  font-size: 9rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.error-page h1 { color: var(--white); margin: 1rem 0; }
.error-page p  { color: rgba(255,255,255,.6); margin-bottom: 2rem; }

/* ---------- Sitemap ---------- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.sitemap-group h3 {
  font-size: 1rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}
.sitemap-group ul { list-style: none; }
.sitemap-group ul li + li { margin-top: .5rem; }
.sitemap-group ul li a { font-size: .9rem; color: var(--text-lt); }
.sitemap-group ul li a:hover { color: var(--accent-dk); }

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 3rem;
}
.page-num {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  border: 1.5px solid var(--light-2);
  transition: all var(--transition);
}
.page-num.active, .page-num:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* ---------- Highlight box ---------- */
.highlight-box {
  background: rgba(132,204,22,.1);
  border: 1px solid rgba(132,204,22,.3);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.highlight-box p { margin: 0; font-size: .95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--primary); flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: .25rem; overflow-y: auto; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: .8rem 1rem; font-size: 1rem; }
  .nav-burger { display: flex; }
  .hero-badge { display: none; }
  .two-col, .cta-two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
