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

:root {
  --ink: #0c0c0c;
  --ink-2: #3a3a3a;
  --ink-3: #7a7a7a;
  --green: #1a5c3e;
  --green-light: #e8f0eb;
  --green-mid: #4CAF86;
  --warm: #f7f5f1;
  --warm-2: #ede9e2;
  --white: #ffffff;
  --border: #e0dbd3;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.7s 0.45s ease forwards; opacity: 0; }

/* NAV */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.main-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-logo {
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em; text-decoration: none;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--ink-3); text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--white); padding: 10px 24px;
  border: none; font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 500; cursor: pointer; border-radius: 2px; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green); }

/* HERO */
.hero {
  padding: 140px 60px 0;
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 44px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.hero-eyebrow span {
  font-size: 12px; color: var(--green); font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 88px; line-height: 0.93;
  font-weight: 800; color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 0;
}
.hero h1 .green { color: var(--green); }
.hero h1 .italic { font-family: 'Lora', serif; font-weight: 600; font-style: italic; font-size: 84px; }

.hero-lower {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  padding: 48px 0 64px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.hero p {
  font-size: 17px; line-height: 1.8; color: var(--ink-2);
  max-width: 440px;
}
.hero-right { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.hero-stats { display: flex; gap: 0; width: 100%; }
.stat {
  flex: 1; padding-right: 28px; margin-right: 28px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat .n {
  font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1;
}
.stat .l { font-size: 12px; color: var(--ink-3); margin-top: 4px; line-height: 1.4; }
.hero-btns { display: flex; gap: 12px; }
.btn-primary {
  background: var(--ink); color: var(--white);
  padding: 16px 36px; border: none;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--green); }
.btn-secondary {
  border: 1px solid var(--border); color: var(--ink-2);
  padding: 15px 28px; background: none;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

/* CREDIBILITY STRIP */
.credibility-strip {
  background: var(--ink); padding: 28px 60px;
  display: flex; align-items: center; gap: 0;
}
.cred-item {
  flex: 1; display: flex; align-items: center; gap: 16px;
  padding: 0 40px 0 0; margin: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.cred-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.cred-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cred-icon svg { width: 16px; height: 16px; stroke: var(--green-mid); fill: none; stroke-width: 2; }
.cred-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.cred-text strong { color: #fff; font-weight: 500; display: block; }

/* ABOUT */
.about { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.about-left { position: sticky; top: 100px; }
.section-tag {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--green); }
.about h2 {
  font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 28px;
}
.photo-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--warm-2);
  border: 1px solid var(--border); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; margin-top: 36px;
}
.photo-placeholder svg { width: 48px; height: 48px; stroke: var(--ink-3); fill: none; stroke-width: 1; }
.photo-placeholder p { font-size: 13px; color: var(--ink-3); }

.about-right { padding-top: 8px; }
.about-right p {
  font-size: 16px; line-height: 1.85; color: var(--ink-2); margin-bottom: 24px;
}
.about-right p.lead {
  font-family: 'Lora', serif; font-size: 22px; line-height: 1.65;
  color: var(--ink); font-weight: 400; font-style: italic;
  border-left: 3px solid var(--green); padding-left: 24px;
  margin-bottom: 32px;
}
.credentials { margin-top: 40px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.cred-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.cred-row .role { font-size: 14px; font-weight: 500; color: var(--ink); }
.cred-row .org { font-size: 13px; color: var(--green); }
.cred-row .period { font-size: 12px; color: var(--ink-3); }

/* SERVICES */
.services { background: var(--warm); padding: 100px 60px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 56px; }
.services-header h2 { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.services-header p { font-size: 14px; color: var(--ink-3); max-width: 300px; text-align: right; }
.services-list { display: flex; flex-direction: column; }
.service-item {
  display: grid; grid-template-columns: 64px 1fr 2fr 160px;
  align-items: start; gap: 32px;
  padding: 40px 0; border-top: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}
.service-item:last-child { border-bottom: 1px solid var(--border); }
.service-item:hover { background: rgba(26,92,62,0.03); margin: 0 -20px; padding: 40px 20px; }
.svc-num {
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 400;
  color: var(--ink-3); padding-top: 4px;
}
.svc-title {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--ink); line-height: 1.2;
}
.svc-desc { font-size: 15px; color: var(--ink-2); line-height: 1.75; }
.svc-tag {
  background: var(--green-light); color: var(--green);
  font-size: 11px; padding: 6px 14px; border-radius: 100px;
  font-weight: 500; text-align: center; align-self: start;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* WHO I WORK WITH */
.who { padding: 100px 60px; }
.who h2 { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 16px; }
.who .sub { font-size: 16px; color: var(--ink-3); margin-bottom: 56px; }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.who-card {
  background: var(--warm); padding: 40px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.who-card:hover { border-color: var(--green); }
.who-card .icon {
  width: 40px; height: 40px; margin-bottom: 24px;
  background: var(--green-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.who-card .icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; }
.who-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.who-card p { font-size: 14px; color: var(--ink-2); line-height: 1.75; }
.geo-note { margin-top: 48px; display: flex; align-items: center; gap: 12px; }
.geo-note .pin { font-size: 20px; }
.geo-note p { font-size: 14px; color: var(--ink-3); }
.geo-note strong { color: var(--ink); }

/* HOW IT WORKS */
.process { background: var(--ink); padding: 100px 60px; border-top: 1px solid rgba(255,255,255,0.06); }
.process .section-tag { color: var(--green-mid); }
.process .section-tag::before { background: var(--green-mid); }
.process h2 { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 64px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step {
  padding: 40px 36px 40px 0; margin-right: 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.step:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.step-num {
  font-family: 'Syne', sans-serif; font-size: 56px; font-weight: 800;
  color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 20px;
}
.step h4 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.step .step-tag { margin-top: 20px; display: inline-block; font-size: 11px; color: var(--green-mid); letter-spacing: 0.06em; text-transform: uppercase; }

/* INDUSTRIES */
.industries { padding: 100px 60px; border-bottom: 1px solid var(--border); }
.industries h2 { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 48px; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.industry-pill {
  padding: 20px 28px; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.industry-pill:hover { border-color: var(--green); background: var(--green-light); }
.industry-pill .pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.industry-pill span { font-size: 15px; font-weight: 500; color: var(--ink); }

/* CONTACT / CTA */
.contact { background: var(--warm); padding: 100px 60px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.contact h2 { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.contact h2 em { font-family: 'Lora', serif; font-style: italic; color: var(--green); font-size: 50px; }
.contact p { font-size: 16px; color: var(--ink-2); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-row .contact-icon { width: 36px; height: 36px; background: var(--white); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .contact-icon svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 2; }
.contact-row a { font-size: 15px; color: var(--ink); text-decoration: none; font-weight: 500; }
.contact-row a:hover { color: var(--green); }
.contact-row span { font-size: 12px; color: var(--ink-3); display: block; }
.contact-form { background: var(--white); border: 1px solid var(--border); padding: 40px; }
.contact-form h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; color: var(--ink-3); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.form-group input,
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%237a7a7a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); background: var(--warm);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink);
  outline: none; transition: border-color 0.2s;
  border-radius: 0; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
  width: 100%; background: var(--ink); color: var(--white);
  border: none; padding: 16px; font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background 0.2s; margin-top: 8px;
}
.submit-btn:hover { background: var(--green); }

/* FOOTER */
footer {
  background: var(--ink); padding: 48px 60px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 40px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.footer-logo span { color: var(--green-mid); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 6px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.company-reg { font-size: 11px; color: rgba(255,255,255,0.2); }

/* SPECIALIST NETWORK */
.network-section { padding: 80px 60px; background: #fff; border-bottom: 1px solid var(--border); }
.network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.network-title { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 24px; }
.network-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.network-card { background: var(--warm); border: 1px solid var(--border); padding: 24px; }
.network-card-full { grid-column: span 2; }
.network-card-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.network-card-desc { font-size: 13px; color: var(--ink-3); line-height: 1.6; }

/* ============ MOBILE RESPONSIVE ============ */

/* Hide hamburger on desktop, show nav links */
#menuBtn { display: none; }
#navCta { display: none; }

@media (max-width: 768px) {
  /* NAV */
  nav.main-nav { padding: 0 20px; }
  .nav-links { display: none; }
  #navCtaDesktop { display: none; }
  #navCta { display: block; }
  #menuBtn { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 20px; gap: 0; z-index: 99;
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a { display: block; padding: 16px 0; font-size: 16px; color: var(--ink); }

  /* HERO */
  .hero { padding: 100px 20px 0; }
  .hero h1 { font-size: 44px; line-height: 1.0; }
  .hero h1 .italic { font-size: 42px; }
  .hero-lower { grid-template-columns: 1fr; gap: 32px; padding: 32px 0 48px; margin-top: 32px; }
  .hero p { max-width: 100%; font-size: 15px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat { padding: 0 0 16px; margin: 0 0 16px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .stat .n { font-size: 32px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { text-align: center; width: 100%; padding: 16px 20px; display: block; }

  /* CREDIBILITY STRIP */
  .credibility-strip { flex-direction: column; padding: 24px 20px; gap: 20px; }
  .cred-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 20px; margin: 0; width: 100%; }
  .cred-item:last-child { border-bottom: none; padding-bottom: 0; }

  /* ABOUT */
  .about { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .about-left { position: static; }
  .about h2 { font-size: 34px; }
  .about-right p.lead { font-size: 18px; }
  .about img { margin-top: 24px !important; width: 100% !important; }

  /* SPECIALIST NETWORK */
  .network-section { padding: 60px 20px; }
  .network-grid { grid-template-columns: 1fr; gap: 40px; }
  .network-title { font-size: 32px; }
  .network-cards { grid-template-columns: 1fr; }
  .network-card-full { grid-column: span 1; }

  /* SERVICES */
  .services { padding: 60px 20px; }
  .services-header { flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .services-header h2 { font-size: 34px; }
  .services-header p { text-align: left; max-width: 100%; }
  .service-item { grid-template-columns: 40px 1fr; gap: 12px; padding: 24px 0; }
  .svc-title { font-size: 18px; grid-column: 2; }
  .svc-desc { grid-column: 1 / -1; font-size: 14px; }
  .svc-tag { grid-column: 1 / -1; justify-self: start; }
  .service-item:hover { margin: 0; padding: 24px 0; background: none; }

  /* WHO I WORK WITH */
  .who { padding: 60px 20px; }
  .who h2 { font-size: 34px; }
  .who-grid { grid-template-columns: 1fr; gap: 12px; }
  .geo-note { flex-direction: column; gap: 6px; }

  /* PROCESS */
  .process { padding: 60px 20px; }
  .process h2 { font-size: 34px; margin-bottom: 36px; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 28px 0; margin-right: 0; }
  .step:last-child { border-bottom: none; }
  .step-num { font-size: 40px; }

  /* INDUSTRIES */
  .industries { padding: 60px 20px; }
  .industries h2 { font-size: 34px; }
  .industry-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .industry-pill { padding: 14px 16px; }
  .industry-pill span { font-size: 13px; }

  /* CONTACT */
  .contact { padding: 60px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact h2 { font-size: 34px; }
  .contact h2 em { font-size: 32px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* FOOTER */
  footer { padding: 40px 20px 24px; }
  #privacy { padding: 32px 20px !important; }
  #privacy > div > div:last-child { grid-template-columns: 1fr !important; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .company-reg { text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero h1 .italic { font-size: 32px; }
  .industry-grid { grid-template-columns: 1fr; }
  .contact h2 { font-size: 28px; }
  .contact h2 em { font-size: 26px; }
  .who-card { padding: 28px 20px; }
  .service-item { grid-template-columns: 1fr; }
  .svc-num { display: none; }
  .svc-title { font-size: 17px; }
}

/* SKIP LINK */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--green); color: #fff; padding: 10px 20px;
  font-size: 14px; z-index: 200; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 10px; }

/* SCROLL REVEAL — only applied when JS is confirmed running, so a script
   failure or a no-JS visitor still sees every section. */
.js .about, .js .services, .js .network-section,
.js .who, .js .process, .js .industries, .js .contact {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .about.revealed, .js .services.revealed, .js .network-section.revealed,
.js .who.revealed, .js .process.revealed, .js .industries.revealed, .js .contact.revealed {
  opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js .about, .js .services, .js .network-section,
  .js .who, .js .process, .js .industries, .js .contact {
    opacity: 1; transform: none; transition: none;
  }
}

/* SERVICE HOVER FIX — no layout shift */
.service-item:hover { background: rgba(26,92,62,0.03); margin: 0; padding: 40px 20px; margin-left: -20px; margin-right: -20px; }

/* TABLET BREAKPOINT */
@media (min-width: 769px) and (max-width: 1100px) {
  nav.main-nav { padding: 0 32px; }
  .nav-links { gap: 20px; }
  .hero { padding: 120px 32px 0; }
  .hero h1 { font-size: 60px; }
  .hero h1 .italic { font-size: 56px; }
  .hero-lower { gap: 40px; }
  .about { padding: 80px 32px; gap: 48px; }
  .about h2 { font-size: 38px; }
  .services { padding: 80px 32px; }
  .services-header h2 { font-size: 38px; }
  .service-item { grid-template-columns: 48px 1fr 1.5fr 120px; gap: 20px; }
  .who { padding: 80px 32px; }
  .who h2 { font-size: 38px; }
  .process { padding: 80px 32px; }
  .process h2 { font-size: 38px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 36px; margin-bottom: 36px; }
  .industries { padding: 80px 32px; }
  .industries h2 { font-size: 38px; }
  .contact { padding: 80px 32px; }
  .contact h2 { font-size: 40px; }
  .contact h2 em { font-size: 38px; }
  .contact-inner { gap: 48px; }
  .credibility-strip { padding: 24px 32px; flex-wrap: wrap; gap: 16px; }
  .cred-item { flex: 0 0 calc(33% - 20px); }
  .cred-item:nth-child(3) { border-right: none; }
  .cred-item:nth-child(4), .cred-item:nth-child(5), .cred-item:nth-child(6) { border-right: none; padding-top: 16px; }
  .network-section { padding: 80px 32px; }
  .network-grid { gap: 40px; }
  footer { padding: 40px 32px 24px; }
}

/* FOCUS STYLES for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
