/* 802 Technology Services - Vermont Green #006633 */

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

:root {
  --green: #006633;
  --green-dark: #004d26;
  --green-light: #e6f2ec;
  --green-mid: #c0ddc8;
  --warm-bg: #f7f5f0;
  --text-primary: #1a1a1a;
  --text-secondary: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--white);
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ── Typography ── */
h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 600; line-height: 1.2; }
h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 600; line-height: 1.3; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-secondary); }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section--alt { background: var(--warm-bg); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.88; text-decoration: none; }
.btn--primary { background: var(--green); color: var(--white); }
.btn--light   { background: var(--white); color: var(--green); }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.nav__logo img { height: 36px; width: auto; }

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.nav__links a:hover { color: var(--green); text-decoration: none; }
.nav__links .btn { padding: 8px 18px; font-size: 0.875rem; }

/* ── Hero ── */
.hero {
  background: var(--warm-bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero__heading { color: var(--text-primary); margin-bottom: 16px; }

.hero__sub { margin-bottom: 28px; font-size: 1.05rem; }

.hero__cards { display: flex; flex-direction: column; gap: 16px; }

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
}

.stat-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.stat-card__value {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card__sub { font-size: 0.9rem; color: var(--text-secondary); }
.stat-card__value--md { font-size: 1.2rem; margin-top: 4px; }

/* ── Section headers ── */
.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.section__heading { color: var(--text-primary); margin-bottom: 12px; }
.section__sub { max-width: 520px; margin-bottom: 40px; }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--warm-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.service-card__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.service-card__desc { font-size: 0.9rem; }

/* ── Why section ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card { border-left: 3px solid var(--green); padding-left: 18px; }
.why-card__title { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.why-card__desc { font-size: 0.9rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--green);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p  { color: var(--green-mid); margin-bottom: 24px; }

/* ── About teaser ── */
.about-teaser {
  background: var(--warm-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.about-teaser__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-dark);
  flex-shrink: 0;
}

.about-teaser__quote {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-teaser__name { font-size: 0.9rem; font-weight: 600; color: var(--green); }
.about-teaser__role { font-size: 0.85rem; color: var(--text-secondary); }

/* ── Contact section ── */
.contact-section { padding: 72px 0; }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact__heading { color: var(--text-primary); margin-bottom: 24px; }

.contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.contact__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.contact__item a { color: var(--text-secondary); }
.contact__item a:hover { color: var(--green); }

/* ── Form ── */
.form__group { margin-bottom: 16px; }

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form__textarea { height: 120px; resize: vertical; }

.form__name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Footer ── */
footer {
  background: var(--green-dark);
  padding: 20px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy { font-size: 0.85rem; color: var(--green-mid); }
.footer__link { font-size: 0.85rem; color: var(--green-mid); }
.footer__link:hover { color: var(--white); text-decoration: none; }

/* ── About page ── */
.about-hero {
  background: var(--warm-bg);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-hero__img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

.about-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.about-hero__heading { color: var(--text-primary); margin-bottom: 20px; }
.about-hero__text { margin-bottom: 16px; }
.about-hero__link { font-weight: 500; }

/* ── Page header (about/privacy) ── */
.page-header {
  padding: 48px 0 0;
  border-bottom: 1px solid var(--border);
}

.page-header h1 { color: var(--green); margin-bottom: 32px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero__inner,
  .contact__inner,
  .about-hero__inner,
  .about-teaser__inner { grid-template-columns: 1fr; }

  .services-grid,
  .why-grid { grid-template-columns: 1fr; }

  .form__name-row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; gap: 8px; text-align: center; }

  .nav__links { gap: 16px; }

  .hero__cards { flex-direction: row; }
}

@media (max-width: 480px) {
  .nav__links .btn { display: none; }
  .hero__cards { flex-direction: column; }
}
