:root {
  --bg: #0a0f1e;
  --bg-elev: rgba(18, 26, 48, 0.72);
  --bg-elev-2: rgba(26, 36, 64, 0.9);
  --surface: #10182c;
  --surface-2: #15203a;
  --text: #ecf2ff;
  --muted: #a7b4d6;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --brand: #56f0cf;
  --brand-2: #6aa9ff;
  --brand-3: #9b87ff;
  --warning: #ffbd59;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1180px;
  --header-bg: rgba(10, 15, 30, 0.72);
}

html[data-theme="light"] {
  --bg: #f3f7ff;
  --bg-elev: rgba(255, 255, 255, 0.88);
  --bg-elev-2: rgba(255, 255, 255, 0.98);
  --surface: #ffffff;
  --surface-2: #edf3ff;
  --text: #0f1830;
  --muted: #5b6a89;
  --line: rgba(15, 24, 48, 0.08);
  --line-strong: rgba(15, 24, 48, 0.14);
  --shadow: 0 20px 45px rgba(63, 87, 138, 0.16);
  --shadow-soft: 0 10px 26px rgba(63, 87, 138, 0.10);
  --header-bg: rgba(243, 247, 255, 0.82);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(106, 169, 255, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(86, 240, 207, 0.12), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 92%, black 8%) 100%);
  min-height: 100vh;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand img {
  width: 237px;
  height: 80px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18));
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle,
.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  background: var(--bg-elev);
  color: var(--text);
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.theme-toggle:hover,
.menu-toggle:hover { transform: translateY(-2px); }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #06111f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  background: var(--bg-elev);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg-elev);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 8px rgba(86, 240, 207, 0.08);
}

.hero {
  padding: 88px 0 56px;
}

.hero-grid,
.split,
.cta-grid,
.contact-grid,
.footer-grid,
.story-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(1.8rem, 4vw, 4rem);
  /* font-size: clamp(2.6rem, 5vw, 5rem); */
  line-height: 1.02;
  letter-spacing: -1.9px;
}

.hero p,
.page-hero p,
.section-head p,
.panel p,
.card p,
.copy,
.timeline p,
.stat-card span,
.form-note,
.service-list li,
.footer-copy,
.kicker-list li,
.detail-list li {
  color: var(--muted);
}

.hero-copy {
  max-width: 720px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-panel,
.panel,
.card,
.stat-card,
.timeline,
.contact-card,
.form-card,
.mini-card,
.pricing-card,
.case-card,
.footer-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-panel {
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(155, 135, 255, 0.2), transparent 68%);
}

.mock-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(17, 24, 44, 0.92), rgba(10, 15, 30, 0.96));
}

html[data-theme="light"] .mock-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(238,244,255,0.98));
}

.mock-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--text) 20%, transparent);
}

.dashboard {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.kpi-row,
.feature-row,
.service-grid,
.stats-grid,
.values-grid,
.case-grid,
.footer-columns,
.contact-cards,
.faq-grid {
  display: grid;
  gap: 18px;
}

.kpi-row,
.values-grid,
.contact-cards { grid-template-columns: repeat(3, 1fr); }
.feature-row,
.case-grid,
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.footer-columns { grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr; }

.kpi,
.feature,
.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.kpi strong,
.stat-card strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1.1;
  margin-bottom: 4px;
}

.section,
.page-section {
  padding: 60px 0;
}

.page-hero {
  padding: 76px 0 28px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head h2,
.cta-copy h2,
.panel h3,
.card h3,
.contact-card h3,
.form-card h3,
.page-title {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -1px;
}

.card,
.panel,
.contact-card,
.form-card,
.pricing-card,
.case-card,
.footer-card,
.stat-card {
  padding: 26px;
}

.card:hover,
.case-card:hover,
.pricing-card:hover,
.mini-card:hover {
  transform: translateY(-6px);
  background: var(--bg-elev-2);
}

.card,
.case-card,
.pricing-card,
.mini-card {
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.icon-chip {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(86,240,207,0.18), rgba(106,169,255,0.18));
  border: 1px solid var(--line-strong);
  margin-bottom: 16px;
}

.service-list,
.detail-list,
.kicker-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.timeline {
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  min-width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #06111f;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.stat-card {
  text-align: center;
}

.band {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.band-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
  justify-content: space-between;
}

.band-item {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.4px;
}

.highlight-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(86,240,207,0.12), rgba(106,169,255,0.12), rgba(155,135,255,0.10));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.cta-shell {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(86,240,207,0.12), rgba(106,169,255,0.14), rgba(155,135,255,0.10));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

object.email {
	height: 2em;
	margin: -1em 0;
	vertical-align: middle;
	color: white;
}

object.email[data-theme="dark"] {
	height: 2em;
	margin: -1em 0;
	vertical-align: middle;
}

object.phone {
	height: 2em;
	margin: -1em 0;
	vertical-align: middle;
}

object.phone[data-theme="dark"] {
	height: 2em;
	margin: -1em 0;
	vertical-align: middle;
}

.contact-grid { align-items: start; }
.contact-card .row { margin-bottom: 16px; }
.contact-card .label { display: block; font-weight: 700; margin-bottom: 4px; }

#formStatus {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

#formStatus.success {
  color: #16a34a;
}

#formStatus.error {
  color: #dc2626;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}

html[data-theme="light"] input,
html[data-theme="light"] textarea,
html[data-theme="light"] select {
  background: rgba(15,24,48,0.03);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(86, 240, 207, 0.7);
  box-shadow: 0 0 0 4px rgba(86,240,207,0.12);
}

textarea { min-height: 160px; resize: vertical; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
}

.notice.success {
  border-color: rgba(86,240,207,0.35);
  background: rgba(86,240,207,0.10);
}

.notice.error {
  border-color: rgba(255,120,120,0.35);
  background: rgba(255,120,120,0.10);
}

.footer {
  padding: 36px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 26px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.floaty {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1080px) {
  .service-grid,
  .stats-grid,
  .values-grid,
  .contact-cards,
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .cta-grid,
  .contact-grid,
  .story-grid,
  .two-col,
  .feature-row,
  .case-grid,
  .faq-grid,
  .footer-columns { grid-template-columns: 1fr; }

  .kpi-row,
  .service-grid,
  .values-grid,
  .stats-grid,
  .contact-cards { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: var(--bg-elev-2);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .header-actions .btn { display: none; }
}

@media (max-width: 560px) {
  .hero,
  .page-hero,
  .section,
  .page-section { padding-top: 44px; }

  .hero h1,
  .page-hero h1 { letter-spacing: -1.2px; }

  .btn,
  .theme-toggle,
  .menu-toggle { width: auto; }

  .hero-panel,
  .panel,
  .card,
  .contact-card,
  .form-card,
  .cta-shell,
  .highlight-card,
  .case-card,
  .pricing-card,
  .footer-card { padding: 22px; }
}


/* Homepage v2 enhancements */
.hero-rich {
  position: relative;
  overflow: hidden;
}

.hero-rich::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(155,135,255,0.18), transparent 68%);
  pointer-events: none;
}

.priority-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 10px;
}

.priority-pills span,
.case-tag,
.card-eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.kpi-glow {
  position: relative;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 78%, var(--brand) 22%), var(--surface));
}

.hero-visual {
  position: relative;
}

.hero-art-shell {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 70%, var(--brand-2) 30%), var(--surface));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-art-shell img {
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.overlay-card {
  position: absolute;
  max-width: 260px;
  background: color-mix(in srgb, var(--bg-elev-2) 84%, transparent);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}

.overlay-card strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
}

.overlay-top { top: 28px; right: 22px; }
.overlay-bottom { left: 22px; bottom: 22px; }

.band-premium {
  background: linear-gradient(90deg, rgba(86,240,207,0.06), rgba(106,169,255,0.06));
}

.priority-grid,
.case-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.priority-card,
.case-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 86%, black 14%));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.priority-card + .priority-card,
.case-card + .case-card {
  margin-top: 0;
}

.priority-media,
.case-image {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(86,240,207,0.08), rgba(106,169,255,0.08));
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.priority-media img,
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.priority-copy,
.case-content {
  padding: 30px;
}

.salesforce-priority {
  border-color: color-mix(in srgb, var(--brand) 34%, var(--line));
  box-shadow: 0 18px 40px rgba(86, 240, 207, 0.10), var(--shadow-soft);
}

.case-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0 16px;
}

.case-columns strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.result-strip,
.arch-list {
  display: grid;
  gap: 12px;
}

.result-strip {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.result-strip span {
  padding: 12px 14px;
  text-align: center;
  border-radius: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}

.architecture-panel {
  padding: 30px;
}

.arch-list {
  margin-top: 22px;
}

.arch-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
}

.diagram-panel {
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 70%, var(--brand-3) 30%), var(--surface));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.diagram-panel img {
  width: 100%;
  border-radius: 20px;
}

.stats-premium {
  margin-top: 26px;
}

@media (max-width: 980px) {
  .priority-card,
  .case-card,
  .case-columns {
    grid-template-columns: 1fr;
  }

  .overlay-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .hero-art-shell {
    padding-bottom: 18px;
  }

  .result-strip {
    grid-template-columns: 1fr;
  }
}


/* v3 portfolio + gallery upgrades */
.section-tight { padding-top: 34px; }

.section-head .lead-note {
  margin-top: 10px;
  color: var(--muted);
  max-width: 760px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
}

.gallery-card,
.mockup-card,
.story-card,
.metric-card,
.service-panel {
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 84%, black 16%));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.gallery-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
}

.gallery-card.featured {
  grid-row: span 2;
}

.gallery-card img,
.mockup-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-copy {
  padding: 24px;
}

.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gallery-copy h3,
.story-copy h3,
.service-panel h3,
.metric-card h3 {
  margin: 14px 0 10px;
  line-height: 1.15;
}

.gallery-meta,
.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.gallery-meta span,
.story-meta span {
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.mockup-card {
  overflow: hidden;
}

.mockup-caption {
  padding: 18px 20px 22px;
}

.mockup-caption strong {
  display: block;
  margin-bottom: 6px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.story-card {
  overflow: hidden;
}

.story-copy {
  padding: 22px;
}

.story-copy p,
.gallery-copy p,
.mockup-caption p,
.service-panel p,
.metric-card p {
  color: var(--muted);
}

.story-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.story-list li + li { margin-top: 8px; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric-card {
  padding: 24px;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.quote-panel {
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(155,135,255,0.18), transparent 26%),
    linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 86%, black 14%));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.quote-panel blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  line-height: 1.45;
  font-weight: 600;
}

.quote-panel cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
}

.service-panel {
  padding: 26px;
}

.service-panel + .service-panel {
  margin-top: 20px;
}

.cta-note {
  color: var(--muted);
  margin-top: 12px;
}

@media (max-width: 1100px) {
  .gallery-grid,
  .story-grid,
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-card.featured {
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .gallery-grid,
  .story-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}
