/* ============================================
   SELF-HOSTED FONTS — served from same CDN, no external round-trips
   ============================================ */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/dm-sans-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/dm-sans-latin-700-normal.woff2') format('woff2');
}

/* ============================================
   DESIGN TOKENS — edit these to retheme the site
   ============================================ */
:root {
  --navy:       #0d1b3e;
  --navy-mid:   #162348;
  --navy-light: #1e2d52;
  --pink:       #e8326a;
  --pink-light: #fce8ef;
  --white:      #ffffff;
  --off-white:  #f5f5f7;
  --text:       #111111;
  --muted:      #666666;
  --border:     #e2e2e2;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-pill:100px;
  --font-display: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition:   0.18s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--navy);
}
h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(24px, 3.5vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
h4 { font-size: 16px; }
p  { line-height: 1.7; color: var(--muted); }
.pink { color: var(--pink); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; border-bottom: 0.5px solid var(--border); }
.section:last-child { border-bottom: none; }
.section-label {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 8px; }
.section-sub { font-size: 15px; color: var(--muted); margin-bottom: 36px; }

/* ============================================
   TICKER STRIP
   ============================================ */
.ticker {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 24s linear infinite;
}
.ticker-track span { padding: 0 20px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.nav-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--navy); font-weight: 500; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-available {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.available-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}
.btn-cta {
  background: var(--pink);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-cta:hover { opacity: 0.88; }
.btn-dark {
  background: var(--navy);
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--transition);
}
.btn-dark:hover { opacity: 0.88; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--navy); color: white; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 80px 0 72px;
  border-bottom: 0.5px solid var(--border);
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero h1 { max-width: 600px; margin-bottom: 20px; }
.hero-intro { font-size: 16px; max-width: 460px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--border);
  padding-top: 36px;
}
.hero-stat { padding-right: 36px; }
.hero-stat + .hero-stat { padding-left: 36px; border-left: 0.5px solid var(--border); }
.stat-number {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number.highlight { color: var(--pink); }
.stat-label { font-size: 13px; color: var(--muted); }

/* ============================================
   LOGOS STRIP
   ============================================ */
.logos-strip {
  border-bottom: 0.5px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.logos-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.logo-item {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #bbb;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-right: 0.5px solid var(--border);
}
.logo-item:last-child { border-right: none; }

@media (max-width: 768px) {
  .logos-strip .container {
    padding: 0;
  }
  .logos-inner {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .logos-inner::-webkit-scrollbar { display: none; }
  .logo-item {
    flex: 0 0 auto;
    white-space: nowrap;
    border-right: 0.5px solid var(--border);
  }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-item {
  background: var(--white);
  padding: 24px;
  transition: background var(--transition);
}
.service-item:hover { background: var(--off-white); }
.service-num { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.service-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
.service-arrow { font-size: 14px; color: var(--pink); margin-top: 12px; display: block; }

/* ============================================
   CASE STUDY CARDS
   ============================================ */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.case-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition);
  display: block;
  color: inherit;
}
.case-card:hover { transform: translateY(-2px); }
.case-thumb {
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  position: relative;
}
.case-big-stat {
  font-size: 36px;
  font-weight: 700;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1;
}
.case-tags { display: flex; gap: 6px; align-items: flex-end; }
.case-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 0.5px solid rgba(255,255,255,0.25);
}
.case-body { padding: 18px; }
.case-client { font-size: 11px; color: var(--muted); margin-bottom: 5px; }
.case-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.case-metrics { display: flex; gap: 20px; }
.metric-val { font-size: 22px; font-weight: 700; color: var(--pink); letter-spacing: -0.5px; }
.metric-key { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ============================================
   ABOUT BAND (dark)
   ============================================ */
.about-band {
  background: var(--navy);
  padding: 72px 0;
}
.about-band-inner {
  display: flex;
  gap: 36px;
  align-items: center;
}
.about-avatar {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  border: 2px solid rgba(232,50,106,0.45);
  flex-shrink: 0;
  overflow: hidden;
}
.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-band h2 { color: white; margin-bottom: 10px; }
.about-band h2 span { color: var(--pink); }
.about-band p { color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.skill-tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 0.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}

/* ============================================
   BLOG LIST
   ============================================ */
.blog-list {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-row {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid var(--border);
  transition: background var(--transition);
  color: inherit;
  text-decoration: none;
}
.blog-row:last-child { border-bottom: none; }
.blog-row:hover { background: var(--off-white); }
.blog-cat-pill {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--border);
  color: var(--muted);
  margin-bottom: 5px;
}
.blog-post-title { font-size: 15px; font-weight: 500; color: var(--navy); }
.blog-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.blog-arrow { color: var(--muted); font-size: 18px; flex-shrink: 0; margin-left: 16px; }

/* ============================================
   MARQUEE CTA BAND
   ============================================ */
.marquee-band {
  background: var(--navy);
  padding: 32px 0;
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.marquee-text {
  font-size: 30px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  padding-right: 64px;
}
.marquee-text .pink { color: var(--pink); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
  border-top: 0.5px solid var(--border);
}
.cta-section h2 { margin-bottom: 10px; }
.cta-section p { font-size: 15px; margin-bottom: 28px; }

/* ============================================
   RESOURCES GRID
   ============================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.resource-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color var(--transition);
  display: block;
  color: inherit;
}
.resource-card:hover { border-color: var(--pink); }
.resource-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 20px;
}
.resource-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.resource-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
.resource-cta { font-size: 12px; color: var(--pink); font-weight: 500; margin-top: 12px; display: block; }

/* ============================================
   CASE STUDY DETAIL PAGE
   ============================================ */
.cs-hero {
  padding: 56px 0 48px;
}
.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.cs-back:hover { color: white; }
.cs-eyebrow {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.cs-hero h1 { color: white; max-width: 540px; }
.cs-meta-bar {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.cs-meta-key {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}
.cs-meta-val { font-size: 13px; color: white; font-weight: 500; }
.cs-meta-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.cs-meta-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.cs-body { padding: 56px 0; }
.cs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}
.cs-stat-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.cs-stat-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}
.cs-stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }
.cs-section { margin-bottom: 40px; }
.cs-section h2 { font-size: 22px; margin-bottom: 14px; }
.cs-section p { font-size: 15px; }
.cs-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.cs-what-item {
  border-left: 3px solid var(--pink);
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.cs-what-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.cs-what-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ============================================
   BLOG POST
   ============================================ */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px;
  padding: 52px 0 80px;
  align-items: start;
}
.post-content h2 { font-size: 22px; margin: 32px 0 12px; }
.post-content h3 { font-size: 18px; margin: 24px 0 10px; }
.post-content p { font-size: 15px; margin-bottom: 16px; }
.post-content ul, .post-content ol { padding-left: 22px; margin-bottom: 16px; }
.post-content li { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
.post-content code {
  background: var(--off-white);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: monospace;
}
.post-toc {
  position: sticky;
  top: 80px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  border: 0.5px solid var(--border);
}
.post-toc-title {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.post-toc a {
  font-size: 13px;
  color: var(--navy);
  display: block;
  padding: 5px 0;
  border-bottom: 0.5px solid var(--border);
  transition: color var(--transition);
}
.post-toc a:last-child { border-bottom: none; }
.post-toc a:hover { color: var(--pink); }
.post-hero-section {
  padding: 48px 0 0;
  border-bottom: 0.5px solid var(--border);
}
.post-cat-pill {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.post-hero-section h1 { max-width: 620px; margin-bottom: 20px; }
.post-byline { display: flex; align-items: center; gap: 12px; padding-bottom: 32px; }
.post-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
}
.post-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.post-author-name { font-size: 14px; font-weight: 500; color: var(--navy); }
.post-author-date { font-size: 12px; color: var(--muted); }
.author-box {
  margin-top: 48px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.author-box-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0.5px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
}
.author-box-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.author-box-label { font-size: 12px; color: var(--muted); margin-bottom: 3px; }
.author-box-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.author-box-bio { font-size: 13px; color: var(--muted); line-height: 1.6; }
.read-more-link { color: var(--pink); font-weight: 500; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page-hero { padding: 72px 0; border-bottom: 0.5px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.about-page-avatar {
  width: 100%;
  aspect-ratio: 1;
  max-width: 320px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 700;
  color: var(--navy);
}
.about-faq { padding: 72px 0; }
.faq-item {
  border-bottom: 0.5px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.7; padding-top: 12px; }

/* ============================================
   FILTER BUTTONS
   ============================================ */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  font-size: 12px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; padding: 72px 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--navy); }
.form-input, .form-textarea {
  padding: 11px 14px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit {
  align-self: flex-start;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-link:hover { color: white; }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-pd { font-size: 12px; color: rgba(232,50,106,0.7); transition: color var(--transition); }
.footer-pd:hover { color: var(--pink); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-stat + .hero-stat { padding-left: 0; border-left: none; border-top: 0.5px solid var(--border); padding-top: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .cs-stats { grid-template-columns: 1fr; }
  .cs-what-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-toc { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
