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

:root {
  --green: #4CAE0F;
  --green-light: #6DC52A;
  --green-dark: #2d6a08;
  --bg: #F2F5F0;
  --bg2: #FFFFFF;
  --bg3: #EBF0E8;
  --surface: #FFFFFF;
  --border: rgba(26,43,18,0.10);
  --text: #141E11;
  --text2: #3D5438;
  --text3: #7A9673;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; }
::selection { background: rgba(76,174,15,0.2); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(76,174,15,0.3); border-radius: 3px; }
input, textarea, button { font-family: 'Inter', sans-serif; }

/* ─── ANIMATIONS ─── */
@keyframes blink      { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes pulse      { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }
@keyframes fadeSlideR { from{opacity:0;transform:translateX(24px)}  to{opacity:1;transform:translateX(0)} }
@keyframes fadeSlideL { from{opacity:0;transform:translateX(-24px)} to{opacity:1;transform:translateX(0)} }

.text-green { color: var(--green); }

/* ─── LAYOUT ─── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 clamp(24px,5%,80px); }
.container-sm { max-width: 900px;  margin: 0 auto; padding: 0 clamp(24px,5%,80px); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px,5%,80px);
}
nav.scrolled {
  background: rgba(242,245,240,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 32px; object-fit: contain; }
.nav-desktop { display: flex; gap: 36px; align-items: center; }
.nav-desktop a {
  color: var(--text2); text-decoration: none; font-size: 14px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  letter-spacing: 0.01em; transition: color .2s;
}
.nav-desktop a:hover { color: var(--green); }
.nav-cta {
  background: var(--text) !important; color: var(--bg) !important;
  padding: 9px 20px; border-radius: 7px;
  font-weight: 600 !important; font-size: 13px !important;
}
.nav-cta:hover { background: var(--green) !important; color: #fff !important; }
.nav-mobile {
  background: none; border: none; cursor: pointer;
  color: var(--text); display: none; align-items: center;
}
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(242,245,240,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-link {
  color: var(--text); text-decoration: none;
  font-size: 28px; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
}

/* ─── SECTIONS COMMON ─── */
section {
  padding: clamp(80px,10vw,140px) clamp(24px,5%,80px);
  border-top: 1px solid var(--border);
}
#about       { background: var(--bg2); }
#services    { background: var(--bg); }
#team        { background: var(--bg2); }
#projects    { background: var(--bg); }
#testimonials{ background: var(--bg2); padding: clamp(64px,8vw,100px) clamp(24px,5%,80px); }
#contact     { background: var(--bg); position: relative; overflow: hidden; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  font-family: var(--mono); font-size: 11px; color: var(--green);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 1.5px; background: var(--green); flex-shrink: 0;
}
h2 {
  font-size: clamp(28px,3vw,46px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.12; margin-bottom: 24px;
}
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px; flex-wrap: wrap; gap: 24px;
}
.section-header h2 { margin-bottom: 0; }
.section-intro { color: var(--text2); max-width: 340px; font-size: 14px; line-height: 1.7; }
.section-center { text-align: center; margin-bottom: 48px; }
.section-center .section-label { justify-content: center; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text); color: var(--bg);
  padding: 13px 28px; border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px;
  text-decoration: none; transition: all .25s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green); transform: translateY(-2px); color: #fff; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text2);
  padding: 13px 28px; border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 14px;
  text-decoration: none; transition: all .25s;
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }
.btn-full { width: 100%; justify-content: center; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: var(--bg); display: flex; align-items: center;
  padding: 0; border-top: none;
}
.hero-dots {
  position: absolute; inset: -20%;
  background-image: radial-gradient(circle, rgba(76,174,15,0.18) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none; transition: transform 0.05s linear;
}
.hero-leaf {
  position: absolute; right: -4%; top: -8%;
  pointer-events: none; transition: transform 0.05s linear; opacity: 0.045;
}
.hero-content {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(100px,12vh,140px) clamp(24px,5%,80px) 80px;
  width: 100%; position: relative; z-index: 2;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(76,174,15,0.1); border: 1px solid rgba(76,174,15,0.25);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 32px;
}
.hero-badge span:last-child {
  font-family: var(--mono); font-size: 11px; color: var(--green);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse 2s ease-in-out infinite;
}
#hero h1 {
  font-size: clamp(40px,5.5vw,76px); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 24px; color: var(--text);
}
.hero-desc {
  font-size: 17px; color: var(--text2); line-height: 1.75;
  max-width: 480px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* ─── CODE CARD ─── */
.hero-right { transition: transform 0.05s linear; }
.code-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(20,30,17,0.10);
}
.code-card-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--bg3);
}
.mac-dots { display: flex; gap: 6px; }
.mac-dots span { width: 11px; height: 11px; border-radius: 50%; opacity: 0.8; }
.code-filename { font-family: var(--mono); font-size: 11px; color: var(--text2); margin-left: 6px; }
.code-area {
  padding: 20px; font-family: var(--mono); font-size: 12.5px;
  line-height: 1.9; overflow: hidden; margin: 0; height: 295px;
}
.code-cursor {
  display: inline-block; width: 7px; height: 14px;
  background: var(--green); vertical-align: middle;
  animation: blink 0.9s step-end infinite; margin-left: 1px;
}
.code-metrics {
  border-top: 1px solid var(--border); padding: 12px 20px;
  display: flex; gap: 20px; background: var(--bg3); height: 58px; align-items: center;
}
.metric-key {
  font-family: var(--mono); font-size: 10px; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.metric-val { font-family: var(--mono); font-size: 13px; font-weight: 500; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-grid p { color: var(--text2); line-height: 1.8; font-size: 15px; margin-bottom: 20px; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.principle-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px; transition: all .2s; cursor: default;
}
.principle-card:hover { background: var(--bg3); border-color: rgba(76,174,15,0.3); }
.card-icon { color: var(--green); margin-bottom: 10px; }
.card-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.card-desc { color: var(--text3); font-size: 12px; line-height: 1.65; }

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.service-card {
  background: var(--surface); padding: 36px 32px;
  transition: background .25s; cursor: default; position: relative;
}
.service-card:hover { background: var(--bg3); }
.service-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.service-num-icon { display: flex; align-items: center; gap: 16px; }
.service-num { font-family: var(--mono); font-size: 11px; color: var(--text3); letter-spacing: 0.08em; }
.service-icon-wrap {
  width: 38px; height: 38px; border-radius: 8px; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); border: 1px solid var(--border);
}
.service-tag {
  padding: 2px 9px; border-radius: 20px; font-size: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px;
  margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.3;
}
.service-card p { color: var(--text2); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text3); }
.service-features li svg { flex-shrink: 0; }
.service-accent {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--green); transition: width .3s ease;
}
.service-card:hover .service-accent { width: 100%; }

/* ─── TEAM ─── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px; transition: all .25s;
}
.team-card:hover { background: var(--bg3); transform: translateY(-3px); }
.team-card-header { margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.team-avatar {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.team-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.team-role { font-size: 11px; font-family: var(--mono); margin-top: 3px; letter-spacing: 0.04em; }
.team-desc { color: var(--text2); font-size: 13px; line-height: 1.75; margin-bottom: 24px; }
.team-linkedin {
  display: inline-flex; align-items: center; gap: 6px; color: var(--text3);
  text-decoration: none; font-size: 12px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 500; transition: color .2s;
}
.team-linkedin:hover { color: #0077b5; }

/* ─── PROJECTS ─── */
.filter-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 6px 14px; border-radius: 20px; font-size: 12px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 500; cursor: pointer;
  border: 1px solid var(--border); background: transparent; color: var(--text3); transition: all .2s;
}
.filter-btn.active { border-color: var(--green); background: rgba(76,174,15,0.1); color: var(--green); }
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.project-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; transition: all .25s;
  display: flex; flex-direction: column; cursor: pointer;
}
.project-card:hover { background: var(--bg3); transform: translateY(-4px); }
.project-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.project-tag {
  padding: 3px 10px; border-radius: 20px; font-size: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.project-co2 { font-family: var(--mono); font-size: 11px; color: var(--green); font-weight: 500; }
.project-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 4px; letter-spacing: -0.01em; }
.project-client { font-family: var(--mono); font-size: 10px; color: var(--text3); margin-bottom: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.project-desc { color: var(--text2); font-size: 13px; line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.project-footer { display: flex; justify-content: space-between; align-items: center; }
.project-stack { display: flex; gap: 6px; flex-wrap: wrap; }
.stack-badge { font-family: var(--mono); font-size: 10px; color: var(--text3); background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; padding: 2px 7px; }
.project-arrow { transition: color .2s; }

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: rgba(20,30,17,0.55); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.35s ease; cursor: default;
}
.modal-overlay.open { opacity: 1; }
.modal-box {
  display: none;
  position: fixed; z-index: 200;
  background: var(--surface);
  box-shadow: 0 32px 80px rgba(20,30,17,0.25);
  border: 1px solid var(--border);
  overflow: hidden; flex-direction: column;
  transition: all 0.38s cubic-bezier(0.34, 1.1, 0.64, 1);
}
.modal-box.visible { display: flex; }
.modal-header {
  padding: 22px 28px 18px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start; flex-shrink: 0;
}
.modal-header-left { display: flex; gap: 14px; align-items: center; }
.modal-tag { padding: 3px 10px; border-radius: 20px; font-size: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.modal-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; line-height: 1.2; }
.modal-client { font-family: var(--mono); font-size: 10px; color: var(--text3); letter-spacing: 0.08em; text-transform: uppercase; }
.modal-close {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg3);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text2); flex-shrink: 0; transition: all .2s;
}
.modal-close:hover { border-color: var(--green); color: var(--green); }
.modal-body { display: flex; flex-grow: 1; overflow: hidden; min-height: 0; }
.modal-info {
  width: 280px; flex-shrink: 0; padding: 24px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 20px; overflow-y: auto;
}
.modal-info > p { color: var(--text2); font-size: 13px; line-height: 1.75; }
.modal-section-label { font-family: var(--mono); font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.modal-metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.modal-metric { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.modal-metric-key { font-family: var(--mono); font-size: 10px; color: var(--text3); margin-bottom: 3px; letter-spacing: 0.06em; }
.modal-metric-val { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; }
.modal-stack { display: flex; gap: 6px; flex-wrap: wrap; }
.modal-co2 { margin-top: auto; padding: 12px 14px; border-radius: 8px; }
.modal-co2-key { font-family: var(--mono); font-size: 10px; color: var(--text3); margin-bottom: 3px; }
.modal-co2-val { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; }
.modal-screens { flex-grow: 1; min-width: 0; padding: 24px; display: flex; flex-direction: column; gap: 12px; min-height: 0; }
.modal-main-screen { flex-grow: 1; min-height: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.modal-thumbs { display: flex; gap: 10px; height: 64px; flex-shrink: 0; }
.modal-thumb {
  flex: 1; min-width: 0; border-radius: 8px; overflow: hidden; cursor: pointer;
  border: 1.5px solid var(--border); padding: 0; background: none; transition: border-color .2s;
}
.modal-thumb.active { border-color: var(--green); }
.screen-ph {
  width: 100%; height: 100%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
}

/* ─── TESTIMONIALS ─── */
.testimonial-wrap { position: relative; }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: clamp(32px,5vw,56px); position: relative;
  min-height: 300px; display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-card.anim-r { animation: fadeSlideR 0.4s ease; }
.testimonial-card.anim-l { animation: fadeSlideL 0.4s ease; }
.quote-mark {
  position: absolute; top: 24px; right: 32px;
  font-family: Georgia, serif; font-size: 80px;
  color: rgba(76,174,15,0.08); line-height: 1; user-select: none;
}
.t-quote {
  font-size: clamp(15px,1.8vw,18px); line-height: 1.8; color: var(--text);
  font-weight: 400; margin-bottom: 36px; font-style: italic; max-width: 680px;
}
.t-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.t-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px; }
.t-role { font-family: var(--mono); font-size: 11px; color: var(--text3); margin-top: 2px; }
.t-controls { display: flex; align-items: center; gap: 16px; }
.t-dot { height: 8px; border-radius: 4px; background: var(--border); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.t-dot.active { width: 24px; background: var(--green); }
.t-dot:not(.active) { width: 8px; }
.t-sep { width: 1px; height: 20px; background: var(--border); margin: 0 4px; }
.t-btn {
  width: 34px; height: 34px; border-radius: 8px; background: var(--bg3);
  border: 1px solid var(--border); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); transition: all .2s;
}
.t-btn:hover { border-color: var(--green); color: var(--green); }

/* ─── CONTACT ─── */
.contact-leaf {
  position: absolute; top: -30%; right: -10%;
  pointer-events: none; opacity: 0.03; transition: transform 0.05s linear;
}
.contact-inner { position: relative; z-index: 2; }
.contact-heading { margin-bottom: 60px; }
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.contact-intro { color: var(--text2); line-height: 1.8; font-size: 15px; margin-bottom: 44px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 9px; background: var(--bg3);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; color: var(--green); flex-shrink: 0;
}
.contact-label { font-family: var(--mono); font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-val { color: var(--text); font-size: 14px; text-decoration: none; display: block; transition: color .2s; }
a.contact-val:hover { color: var(--green); }
.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 40px 40px 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
label {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em;
}
input, textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 14px; outline: none; transition: all .2s;
}
input:focus, textarea:focus { background: #fff; border-color: var(--green); }
textarea { resize: vertical; min-height: 110px; }
.form-success { text-align: center; padding: 32px 0; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(76,174,15,0.1); border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--green);
}
.form-success h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.form-success p { color: var(--text2); font-size: 14px; }

/* ─── FOOTER ─── */
footer {
  padding: 36px clamp(24px,5%,80px);
  background: var(--bg2); border-top: 1px solid var(--border);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { height: 26px; object-fit: contain; opacity: 0.7; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { color: var(--text3); text-decoration: none; font-size: 12px; font-family: 'Space Grotesk', sans-serif; transition: color .2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-family: var(--mono); font-size: 11px; color: var(--text3); }

/* ─── RESPONSIVE ─── */
@media(max-width:900px) {
  .nav-desktop { display: none; }
  .nav-mobile  { display: flex; }
  .hero-grid   { grid-template-columns: 1fr; }
  .hero-card   { display: none; }
  .about-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .modal-body  { flex-direction: column; }
  .modal-info  { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
}
@media(max-width:600px) {
  .services-grid, .projects-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
