/* ============================================================
   AWJ DIGITAL MEDIA — SHARED STYLESHEET
   Colors: Forest Green #1b4332 | Burgundy #6b1f2a | White #fff
   Fonts: DM Serif Display + Instrument Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --green: #1b4332;
  --green-light: #2d6a4f;
  --green-pale: #d8f3dc;
  --burgundy: #6b1f2a;
  --burgundy-light: #8b2635;
  --burgundy-pale: #f5e8ea;
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-100: #f4f4f2;
  --gray-200: #e8e8e4;
  --gray-400: #a0a09a;
  --gray-600: #6b6b64;
  --gray-800: #2c2c28;
  --black: #111110;

  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;

  --nav-height: 72px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { color: var(--gray-600); }
.lead { font-size: 1.15rem; line-height: 1.7; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
}

/* ── Layout Utilities ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn--primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,67,50,.3);
}
.btn--secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--burgundy {
  background: var(--burgundy);
  color: var(--white);
  border: 2px solid var(--burgundy);
}
.btn--burgundy:hover {
  background: var(--burgundy-light);
  border-color: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,31,42,.3);
}
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--green);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-icon {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav__link:hover { color: var(--green); background: var(--green-pale); }
.nav__link.active { color: var(--green); font-weight: 600; }

/* Services Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
}
.nav__dropdown-trigger::after {
  content: '▾';
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.nav__dropdown:hover .nav__dropdown-trigger::after { transform: rotate(-180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  transform: translateX(-50%) translateY(-8px);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__dropdown-item:hover {
  background: var(--green-pale);
  color: var(--green);
  padding-left: 18px;
}
.nav__cta { margin-left: 8px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 998;
}
.nav__mobile.open { display: block; }
.nav__mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile-link:hover { color: var(--green); }
.nav__mobile-sub { padding-left: 16px; }
.nav__mobile-sub .nav__mobile-link {
  font-size: 0.9rem;
  color: var(--gray-600);
  border: none;
  padding: 8px 0;
}

/* ── Page Hero ── */
.page-hero {
  background: var(--green);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 10%;
  width: 200px; height: 200px;
  background: rgba(107,31,42,0.25);
  border-radius: 50%;
}
.page-hero .eyebrow { color: rgba(255,255,255,0.6); }
.page-hero h1 { color: var(--white); margin-top: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; margin-top: 16px; }

/* ── Service Tag ── */
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.service-tag--burgundy {
  background: var(--burgundy-pale);
  color: var(--burgundy);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card__icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.card__icon--burgundy { background: var(--burgundy-pale); }
.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p { font-size: 0.9rem; line-height: 1.65; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--transition);
}
.card__link:hover { gap: 10px; }

/* ── Stats Strip ── */
.stats-strip {
  background: var(--green);
  padding: 48px 0;
}
.stats-strip .stat { text-align: center; }
.stats-strip .stat__num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1;
}
.stats-strip .stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-weight: 500;
}
.stats-strip .stat__accent { color: #74c69d; }

/* ── Section Heading ── */
.section-head { margin-bottom: 56px; }
.section-head.text-center .eyebrow,
.section-head.text-center h2 { text-align: center; }
.section-head h2 { margin-top: 10px; }
.section-head p { margin-top: 16px; max-width: 580px; font-size: 1.05rem; }
.section-head.text-center p { margin-left: auto; margin-right: auto; }
.divider-line {
  width: 48px; height: 3px;
  background: var(--burgundy);
  margin-top: 16px;
}
.text-center .divider-line { margin: 16px auto 0; }

/* ── Process Steps ── */
.process-steps { counter-reset: step; }
.process-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
  counter-increment: step;
}
.process-step:last-child { border-bottom: none; }
.process-step__num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  text-align: right;
  padding-top: 4px;
}
.process-step__content h4 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 8px; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-card__stars { color: #f4a31b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card__text { font-size: 1rem; line-height: 1.7; color: var(--gray-800); font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; color: var(--black); }
.testimonial-card__role { font-size: 0.8rem; color: var(--gray-400); }

/* ── Green CTA Block ── */
.cta-block {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: rgba(107,31,42,0.2);
  border-radius: 50%;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: var(--white); }
.cta-block p { color: rgba(255,255,255,0.72); margin-top: 12px; font-size: 1.05rem; }
.cta-block .btn-group { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo-icon {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.footer__tagline { font-size: 0.9rem; line-height: 1.65; max-width: 280px; }
.footer__contact { margin-top: 24px; }
.footer__contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer__contact a:hover { color: #74c69d; }
.footer__col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.footer__social a:hover { background: var(--green); color: white; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb span { color: rgba(255,255,255,0.9); }

/* ── Checklist ── */
.checklist { margin-top: 24px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Highlight Box ── */
.highlight-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
}
.highlight-box--burgundy {
  background: var(--burgundy-pale);
  border-left-color: var(--burgundy);
}
.highlight-box p { color: var(--gray-800); font-size: 0.95rem; }

/* ── Contact Card ── */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-decoration: none;
}
.contact-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); }
.contact-card__value { font-weight: 600; color: var(--black); margin-top: 2px; }
.contact-card__desc { font-size: 0.82rem; color: var(--gray-400); margin-top: 2px; }

/* ── Form ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.form-label span { color: var(--burgundy); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,67,50,0.08);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Who We Help ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.who-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.who-card:hover {
  border-color: var(--green);
  background: var(--green-pale);
}
.who-card__icon { font-size: 2rem; margin-bottom: 12px; }
.who-card h4 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 6px; }
.who-card p { font-size: 0.85rem; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-up { animation: fadeUp 0.7s ease forwards; }
.animate-fade-up-delay-1 { animation: fadeUp 0.7s 0.1s ease both; }
.animate-fade-up-delay-2 { animation: fadeUp 0.7s 0.2s ease both; }
.animate-fade-up-delay-3 { animation: fadeUp 0.7s 0.3s ease both; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-block { padding: 48px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .btn--lg { padding: 14px 24px; font-size: 0.92rem; }
}

/* ── Misc ── */
.green-bg { background: var(--green); }
.burgundy-bg { background: var(--burgundy); }
.gray-bg { background: var(--gray-100); }
.off-white-bg { background: var(--off-white); }
.text-green { color: var(--green); }
.text-burgundy { color: var(--burgundy); }
.text-white { color: var(--white); }
.green-accent { color: #74c69d; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge--green { background: var(--green-pale); color: var(--green); }
.badge--burgundy { background: var(--burgundy-pale); color: var(--burgundy); }

.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 0;
}

/* ── Remote section ── */
.remote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.remote-cell {
  background: var(--green);
  padding: 32px 24px;
  text-align: center;
}
.remote-cell:nth-child(even) { background: var(--green-light); }
.remote-cell h4 { color: white; font-family: var(--serif); font-size: 1rem; margin-bottom: 4px; }
.remote-cell p { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

@media (max-width: 768px) {
  .remote-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .remote-grid { grid-template-columns: 1fr; }
}
